Update web-platform-tests to revision 716f0ac8e3e016318c301828428ce241a1dd0e08

This commit is contained in:
WPT Sync Bot 2019-09-05 10:24:35 +00:00
parent e81af16de8
commit 5735600736
4480 changed files with 66427 additions and 61007 deletions

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<title>CSS Text Test: A combination of `overflow-wrap: break-word` and `white-space` should not crash</title>
<link rel="help" href="https://crbug.com/988832">
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
div {
width: 10ch;
border: 1px blue solid;
overflow-wrap: break-word;
}
inline-block {
display: inline-block;
position: relative;
width: 3ch;
height: 1em;
background: orange;
}
</style>
<body>
<div>
123 56 <span style="white-space: pre"><inline-block></inline-block> <span style="white-space: normal">Flash</span></span> and
</div>
<script>
test(() => { });
</script>
</body>