diff options
author | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2019-08-19 10:23:52 +0000 |
---|---|---|
committer | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2019-08-19 14:01:14 +0000 |
commit | 76712d7d25f8b48d78e6be87aaefd0e55d1f7d09 (patch) | |
tree | 58ad269a9cc1c534bd0022c591e52a489d754537 /tests/wpt/web-platform-tests/css/css-layout-api/constraints/fixed-block-size-quirky-body.https.html | |
parent | 00a9f307733fa98cea8160e96d404bce9a871c09 (diff) | |
download | servo-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/constraints/fixed-block-size-quirky-body.https.html')
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-layout-api/constraints/fixed-block-size-quirky-body.https.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-layout-api/constraints/fixed-block-size-quirky-body.https.html b/tests/wpt/web-platform-tests/css/css-layout-api/constraints/fixed-block-size-quirky-body.https.html new file mode 100644 index 00000000000..150426d45c7 --- /dev/null +++ b/tests/wpt/web-platform-tests/css/css-layout-api/constraints/fixed-block-size-quirky-body.https.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html class=reftest-wait> +<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#dom-layoutconstraints-fixedblocksize"> +<link rel="match" href="../green-square-ref.html"> +<meta name="assert" content="This test checks that LayoutConstraints#fixedBlockSize is passed into the layout function correctly." /> +<style> +iframe { border: none; width: 200px; height: 200px; } +</style> +<script src="/common/reftest-wait.js"></script> +<script src="/common/worklet-reftest.js"></script> +<body> +<script> +// For this test we load a quirky iframe with the test file. +// We can control the auto size of the iframe body element by setting the iframe height. +const iframe = document.createElement('iframe'); +document.body.appendChild(iframe); +iframe.addEventListener('load', () => { + importWorkletAndTerminateTestAfterAsyncPaint( + iframe.contentWindow.CSS.layoutWorklet, {url: 'constraints-fixed-block-size.js'}); +}); +iframe.src = 'support/constraints-fixed-block-size-quirky-body-iframe.html'; +</script> |