aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/css/css-layout-api/layout-child/inlines-dynamic.https.html
diff options
context:
space:
mode:
authorWPT Sync Bot <josh+wptsync@joshmatthews.net>2019-08-19 10:23:52 +0000
committerWPT Sync Bot <josh+wptsync@joshmatthews.net>2019-08-19 14:01:14 +0000
commit76712d7d25f8b48d78e6be87aaefd0e55d1f7d09 (patch)
tree58ad269a9cc1c534bd0022c591e52a489d754537 /tests/wpt/web-platform-tests/css/css-layout-api/layout-child/inlines-dynamic.https.html
parent00a9f307733fa98cea8160e96d404bce9a871c09 (diff)
downloadservo-76712d7d25f8b48d78e6be87aaefd0e55d1f7d09.tar.gz
servo-76712d7d25f8b48d78e6be87aaefd0e55d1f7d09.zip
Update web-platform-tests to revision 82b73b315ce7ed1554e7a9b7bced66a5831e4ee5
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-layout-api/layout-child/inlines-dynamic.https.html')
-rw-r--r--tests/wpt/web-platform-tests/css/css-layout-api/layout-child/inlines-dynamic.https.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-layout-api/layout-child/inlines-dynamic.https.html b/tests/wpt/web-platform-tests/css/css-layout-api/layout-child/inlines-dynamic.https.html
new file mode 100644
index 00000000000..50052087f44
--- /dev/null
+++ b/tests/wpt/web-platform-tests/css/css-layout-api/layout-child/inlines-dynamic.https.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Layout API: Dynamic blockification of inline children</title>
+<link rel="author" href="mailto:obrufau@igalia.com" title="Oriol Brufau">
+<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#layout-children" title="4.1. Layout Children">
+<meta name="assert" content="This test checks that inline children are correctly blockified or unblockified when the display of the parent changes dynamically." />
+
+<style>
+#wrapper {
+ display: layout(foo);
+}
+#test {
+ display: inline;
+}
+</style>
+
+<div id="wrapper">
+ <div id="test">Lorem ipsum</div>
+</div>
+
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/common/worklet-reftest.js"></script>
+<script>
+promise_test(async function() {
+ await importWorklet(CSS.layoutWorklet, {url: 'support/layout-child-worklet.js'});
+
+ const wrapper = document.getElementById("wrapper");
+ const test = document.getElementById("test");
+
+ assert_equals(getComputedStyle(test).display, "block", "The child should have been blockified by the custom layout");
+
+ wrapper.style.display = "block";
+ assert_equals(getComputedStyle(test).display, "inline", "The child should no longer be blockified in block layout");
+
+ wrapper.style.display = "";
+ assert_equals(getComputedStyle(test).display, "block", "The child should have been blockified again");
+});
+</script>