diff options
author | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2019-04-23 21:37:32 -0400 |
---|---|---|
committer | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2019-04-24 00:13:37 -0400 |
commit | d4dc41672a023d8b4d4f0a1aa054fa0302238cff (patch) | |
tree | e13bc197ab06283c05812e513bc04885e225b8c7 /tests/wpt/web-platform-tests/css/css-text/overflow-wrap | |
parent | 155fad62b32f9879893a9f45cde9695ba735f95f (diff) | |
download | servo-d4dc41672a023d8b4d4f0a1aa054fa0302238cff.tar.gz servo-d4dc41672a023d8b4d4f0a1aa054fa0302238cff.zip |
Update web-platform-tests to revision 7a7e16ad8d1a1b843340f47101c0a5c24c9bba57
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-007.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-007.html b/tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-007.html index 0491b921e1a..e701f765da2 100644 --- a/tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-007.html +++ b/tests/wpt/web-platform-tests/css/css-text/overflow-wrap/overflow-wrap-break-word-007.html @@ -3,15 +3,16 @@ <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"> -<link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-white-space-break-spaces"> +<link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-white-space-pre-wrap"> <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: break-spaces' property, that must prevent the word to be broken."> +<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; + position: relative; + font-size: 20px; + font-family: Ahem; + line-height: 1em; } .red { position: absolute; @@ -24,7 +25,6 @@ div { } .test { color: green; - line-height: 1em; width: 5ch; white-space: pre-wrap; |