summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/transform-origin-007.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/transform-origin-007.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/transform-origin-007.html')
-rw-r--r--testing/web-platform/tests/css/css-transforms/transform-origin-007.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-transforms/transform-origin-007.html b/testing/web-platform/tests/css/css-transforms/transform-origin-007.html
new file mode 100644
index 0000000000..074fd96181
--- /dev/null
+++ b/testing/web-platform/tests/css/css-transforms/transform-origin-007.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Transforms Test: transform-origin - 50% bottom('bottom' computes to '100%' in vertical position)</title>
+<link rel="author" title="Intel" href="http://www.intel.com">
+<link rel="author" title="Jieqiong Cui" href="mailto:jieqiongx.cui@intel.com">
+<link rel="help" title="8. The 'transform-origin' Property" href="http://www.w3.org/TR/css-transforms-1/#transform-origin-property">
+<link rel="match" href="transform-origin-007-ref.html">
+<meta name="assert" content="The 'transform-origin' property set 'bottom' computes to 100% for the vertical position.">
+<style>
+ .div1 {
+ height: 150px;
+ position: absolute;
+ width: 150px;
+ }
+ .div2 {
+ background-color: gray;
+ }
+ #test {
+ background-color: red;
+ height: 50px;
+ margin: 0px 50px 100px 50px;
+ transform: rotate(180deg);
+ transform-origin: 50% bottom;
+ width: 50px;
+ }
+ #ref {
+ background-color: green;
+ height: 50px;
+ margin: 0px 50px 100px 50px;
+ transform: rotate(180deg);
+ transform-origin: 50% 100%;
+ width: 50px;
+ }
+</style>
+<body>
+ <p>Test passes if there is a filled green square in the <strong>center</strong> of the gray square and no red.</p>
+ <div class="div1 div2"><div id="test"></div></div>
+ <div class="div1"><div id="ref"></div></div>
+</body>