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/fallback-layout/error.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/fallback-layout/error.https.html')
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-layout-api/fallback-layout/error.https.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-layout-api/fallback-layout/error.https.html b/tests/wpt/web-platform-tests/css/css-layout-api/fallback-layout/error.https.html new file mode 100644 index 00000000000..4c44f2168b2 --- /dev/null +++ b/tests/wpt/web-platform-tests/css/css-layout-api/fallback-layout/error.https.html @@ -0,0 +1,50 @@ +<!DOCTYPE html> +<html class=reftest-wait> +<link rel="help" href="https://drafts.css-houdini.org/css-layout-api/#invoke-a-layout-callback"> +<link rel="match" href="fallback-ref.html"> +<meta name="assert" content="This test checks that a layout() class with a throwing layout function will fallback to block layout." /> +<style> +.test { + background: red; + border: solid 2px; + width: 100px; +} + +.float { + float: left; + width: 50%; + height: 100px; +} + +.fc { + display: flow-root; + height: 100px; +} + +@supports (display: layout(throwing-layout)) { + .test { + display: layout(throwing-layout); + background: green; + } +} +</style> +<script src="/common/reftest-wait.js"></script> +<script src="/common/worklet-reftest.js"></script> + +<!-- This tests that when the "layout()" layout function fails, it will fallback to block layout. --> +<div class="test"> + <div class="float"></div> + <div class="fc"></div> +</div> + +<script id="code" type="text/worklet"> +registerLayout('throwing-layout', class { + async intrinsicSizes() {} + async layout() { throw Error('fail!'); } +}); +</script> + +<script> +importWorkletAndTerminateTestAfterAsyncPaint(CSS.layoutWorklet, document.getElementById('code').textContent); +</script> +</html> |