aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2015-11-16 20:26:44 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2015-11-16 20:26:44 +0530
commitf8c2c3c3e4040af6a1050d57a8d51aa43e3ee46c (patch)
tree816d68327506c3063a30d216cb813b2af0112d4a
parent0293aa2e522c9c400dc7deed4ab4595ff8bb3123 (diff)
parent4aa26b682b95f9ec9a21ddddd1e2d917cb58c831 (diff)
downloadservo-f8c2c3c3e4040af6a1050d57a8d51aa43e3ee46c.tar.gz
servo-f8c2c3c3e4040af6a1050d57a8d51aa43e3ee46c.zip
Auto merge of #8521 - notriddle:test_7780, r=mrobinson
Add test for #7780 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8521) <!-- Reviewable:end -->
-rw-r--r--tests/wpt/mozilla/tests/css/inline_stacking_context.html4
-rw-r--r--tests/wpt/mozilla/tests/css/inline_stacking_context_ref.html4
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/wpt/mozilla/tests/css/inline_stacking_context.html b/tests/wpt/mozilla/tests/css/inline_stacking_context.html
index 24de45e229e..255190a820c 100644
--- a/tests/wpt/mozilla/tests/css/inline_stacking_context.html
+++ b/tests/wpt/mozilla/tests/css/inline_stacking_context.html
@@ -10,5 +10,9 @@
<span style="color: transparent;"><img src="100x100_green.png"></span>
<img style="filter: blur(0px);" src="100x100_green.png">
</div>
+ <div style="font-size: 25px">
+ <span style="transform:scale(1)">X</span>
+ <span style="transform:scale(1)">O</span>
+ </div>
</body>
</html>
diff --git a/tests/wpt/mozilla/tests/css/inline_stacking_context_ref.html b/tests/wpt/mozilla/tests/css/inline_stacking_context_ref.html
index 11c78d4a409..8e9fe61a071 100644
--- a/tests/wpt/mozilla/tests/css/inline_stacking_context_ref.html
+++ b/tests/wpt/mozilla/tests/css/inline_stacking_context_ref.html
@@ -8,5 +8,9 @@
<span style="color: transparent;"><img src="100x100_green.png"></span>
<img src="100x100_green.png">
</div>
+ <div style="font-size: 25px">
+ <span>X</span>
+ <span>O</span>
+ </div>
</body>
</html>