summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/css-transform-3d-rotate3d-X-positive.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-transforms/css-transform-3d-rotate3d-X-positive.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-transforms/css-transform-3d-rotate3d-X-positive.html')
-rw-r--r--testing/web-platform/tests/css/css-transforms/css-transform-3d-rotate3d-X-positive.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-transforms/css-transform-3d-rotate3d-X-positive.html b/testing/web-platform/tests/css/css-transforms/css-transform-3d-rotate3d-X-positive.html
new file mode 100644
index 0000000000..60477bd240
--- /dev/null
+++ b/testing/web-platform/tests/css/css-transforms/css-transform-3d-rotate3d-X-positive.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>CSS Transforms Test: rotate3d on div element</title>
+ <link rel="author" title="Intel" href="http://www.intel.com">
+ <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#three-d-transform-functions">
+ <link rel="match" href="reference/css-transform-3d-rotateX-ref.html">
+ <meta name="assert" content="Test checks that rotate a 2:1 rectangle on X-axis for 60 degree we will get a square and completely cover the red square, and here we use border due to the rectangle not be rotated would cover the red square.">
+ <style>
+ div {
+ position: absolute;
+ }
+ div.redsquare {
+ background-color: red;
+ border: 20px solid black;
+ height: 120px;
+ left: 60px;
+ top: 60px;
+ width: 120px;
+ }
+ div.green {
+ background-color: green;
+ height: 240px;
+ left: 80px;
+ top: 20px;
+ transform: rotate3d(1,0,0,60deg);
+ width: 120px;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test passes if there is a green square with black border around, and no any red.</p>
+ <div class="redsquare"></div>
+ <div class="green"></div>
+ </body>
+</html>