summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/normal-flow/video-paint-order-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/normal-flow/video-paint-order-ref.html')
-rw-r--r--testing/web-platform/tests/css/CSS2/normal-flow/video-paint-order-ref.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/normal-flow/video-paint-order-ref.html b/testing/web-platform/tests/css/CSS2/normal-flow/video-paint-order-ref.html
new file mode 100644
index 0000000000..9f5eebe964
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/normal-flow/video-paint-order-ref.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<style>
+ video {
+ width: 95px;
+ height: 95px;
+ }
+ #negative-margin {
+ display: inline-block;
+ width: 100px;
+ height: 100px;
+ background: green;
+ margin-left: -100px;
+ }
+</style>
+<video></video>
+<div id="negative-margin"></div>