diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-white-space-crash-002.html')
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-white-space-crash-002.html | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-white-space-crash-002.html b/tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-white-space-crash-002.html deleted file mode 100644 index 085e5b6f12d..00000000000 --- a/tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-white-space-crash-002.html +++ /dev/null @@ -1,40 +0,0 @@ -<!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/1001359"> -<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org"> -<script src="/resources/testharness.js"></script> -<script src="/resources/testharnessreport.js"></script> -<style> -.container { - font-family: sans-serif; - font-size: 14px; - width: 680px; - word-wrap: break-word; -} - -spacer { - display: inline-block; - width: 620px; -} - -pre-wrap { - white-space: pre-wrap; -} - -nowrap { - white-space: nowrap; -} - -inline-block { - display: inline-block; -} -</style> -<body> - <div class="container"> - <spacer></spacer> - <nowrap><span><pre-wrap><inline-block></inline-block></pre-wrap></span>123456</nowrap>987654321 -</div> -<script> -test(() => { }); -</script> -</body> |