Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Unified Diff: third_party/WebKit/LayoutTests/transforms/containing-block.html

Issue 2380723003: CSS: test that transform properties create containing block (Closed)
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/transforms/containing-block-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/transforms/containing-block.html
diff --git a/third_party/WebKit/LayoutTests/transforms/containing-block.html b/third_party/WebKit/LayoutTests/transforms/containing-block.html
new file mode 100644
index 0000000000000000000000000000000000000000..56078de78da98e3dc2230469566bd2a41459413b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/transforms/containing-block.html
@@ -0,0 +1,52 @@
+<!DOCTYPE html>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+
+<div id="container" style="transform: rotate(360deg)"></div>
+
+<script>
+function generatesContainingBlock(property, value) {
+ var outer = document.createElement('div');
+ outer.style[property] = value;
+ container.appendChild(outer);
+
+ var inner = document.createElement('div');
+ outer.appendChild(inner);
+ return inner.offsetParent == outer;
+}
+
+test(function() {
+ assert_true(generatesContainingBlock('transform', 'translate(1px) scale(2) rotate(3deg)'));
+}, "transform establishes containing block");
+test(function() {
+ assert_true(generatesContainingBlock('will-change', 'transform'));
+}, "will-change: transform establishes containing block");
+
+test(function() {
+ assert_true(generatesContainingBlock('perspective', '4px'));
+}, "perspective establishes containing block");
+test(function() {
+ assert_true(generatesContainingBlock('will-change', 'perspective'));
+}, "will-change: perspective establishes containing block");
+
+test(function() {
+ assert_true(generatesContainingBlock('translate', '1px'));
+}, "translate establishes containing block");
+test(function() {
+ assert_true(generatesContainingBlock('will-change', 'translate'));
+}, "will-change: translate establishes containing block");
+
+test(function() {
+ assert_true(generatesContainingBlock('scale', '2'));
+}, "scale establishes containing block");
+test(function() {
+ assert_true(generatesContainingBlock('will-change', 'scale'));
+}, "will-change: scale establishes containing block");
+
+test(function() {
+ assert_true(generatesContainingBlock('rotate', '3deg'));
+}, "rotate establishes containing block");
+test(function() {
+ assert_true(generatesContainingBlock('will-change', 'rotate'));
+}, "will-change: rotate establishes containing block");
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/transforms/containing-block-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698