From 728a8aaccd2ef0282aed7301dda0f13bbaa3d334 Mon Sep 17 00:00:00 2001 From: Astley Chen Date: Wed, 1 Jun 2016 11:13:48 +0800 Subject: [PATCH] Bug 1258286: Part 2 - update w3c css masking mask-repeat ref test case. r=heycam --HG-- extra : rebase_source : 2185d9144d7ee0b117249e61dc677e0f20d636ad --- .../submitted/masking/mask-repeat-1-ref.html | 38 +++++++++++-------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/layout/reftests/w3c-css/submitted/masking/mask-repeat-1-ref.html b/layout/reftests/w3c-css/submitted/masking/mask-repeat-1-ref.html index fa386cdac1ef..fe36924f932b 100644 --- a/layout/reftests/w3c-css/submitted/masking/mask-repeat-1-ref.html +++ b/layout/reftests/w3c-css/submitted/masking/mask-repeat-1-ref.html @@ -13,33 +13,39 @@ border: 1px solid black; } - div.inner { - width: 50px; - height: 50px; - position: absolute; + .color { background-color: purple; } - #pos-top-left { left: 0; top: 0; } - #pos-top-right { right: 0; top: 0; } - #pos-bottom-left { left: 0; bottom: 0; } - #pos-bottom-right { right: 0; bottom: 0; } + #default { + position: absolute; + width: 50px; height: 50px; + } + + #repeat-x { + position: absolute; + width: 100%; height: 50px; + } + + #repeat-y { + position: absolute; + width: 50px; height: 100%; + }
-
-
-
-
+
-
-
+
+
+
+
+
-
-
+