diff options
author | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2018-07-22 21:05:03 -0400 |
---|---|---|
committer | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2018-07-22 22:39:46 -0400 |
commit | a5af9a106a1a3937dbbcafb2d18c783e5311749c (patch) | |
tree | 09b46fdc3b1c25decafe9bbea5641afcfc636fc5 /tests/wpt/web-platform-tests/css/css-text/overflow-wrap | |
parent | 4997ec26c27b470bbcaaf0088d32472c3eed800d (diff) | |
download | servo-a5af9a106a1a3937dbbcafb2d18c783e5311749c.tar.gz servo-a5af9a106a1a3937dbbcafb2d18c783e5311749c.zip |
Update web-platform-tests to revision 3f9178031eec5374c9a7d5709a7e11ba4a1955ed
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-text/overflow-wrap')
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-004.html | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-004.html b/tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-004.html deleted file mode 100644 index 560ef63b2f9..00000000000 --- a/tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-004.html +++ /dev/null @@ -1,36 +0,0 @@ -<!DOCTYPE html> -<meta charset="utf-8"> -<title>CSS Text Test: overflow-wrap: break-word</title> -<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com"> -<link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-overflow-wrap-break-word"> -<meta name="flags" content="ahem"> -<link rel="match" href="reference/overflow-wrap-break-word-001-ref.html"> -<meta name="assert" content="A Single leading white-space constitutes a soft breaking opportunity, honoring the 'white-space: pre-wrap' property, that must prevent the word to be broken."> -<style> -div { - position: relative; - font-size: 20px; - font-family: Ahem; -} -.red { - position: absolute; - background: green; - color: red; - width: 100px; - height: 100px; - z-index: -1; -} -.test { - color: green; - line-height: 1em; - width: 5ch; - - white-space: pre-wrap; - overflow-wrap: break-word; -} -</style> -<body> - <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p> - <div class="red"><br>XXXXX</div> - <div class="test"> XXXXX </div> -</body> |