diff options
author | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2020-09-28 08:21:01 +0000 |
---|---|---|
committer | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2020-09-28 10:56:45 +0000 |
commit | ea51b4da955c90f0c93d119ed87ba2fc205da0b4 (patch) | |
tree | d8b6e055c9792fcd5b6774419e69525944205bd9 /tests/wpt/web-platform-tests/css/css-text | |
parent | f518ffc858dc0ba22f34d49b8f87f0aa89412a64 (diff) | |
download | servo-ea51b4da955c90f0c93d119ed87ba2fc205da0b4.tar.gz servo-ea51b4da955c90f0c93d119ed87ba2fc205da0b4.zip |
Update web-platform-tests to revision 1916d3f4f67ab06325b4f0f8ac65b5ebad404bf2
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-text')
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-text/ellisize-rtl-text-crash.html | 15 | ||||
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-text/removing-collapsible-spaces-before-float-crash.html | 16 |
2 files changed, 31 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-text/ellisize-rtl-text-crash.html b/tests/wpt/web-platform-tests/css/css-text/ellisize-rtl-text-crash.html new file mode 100644 index 00000000000..88908877d66 --- /dev/null +++ b/tests/wpt/web-platform-tests/css/css-text/ellisize-rtl-text-crash.html @@ -0,0 +1,15 @@ +<title>CSS Text Test: Ellipsize overflowing text in RTL cause Chrome to crash</title> +<link rel="help" href="https://crbug.com/1130153"> +<style> + .CLASS2 { + text-overflow: ellipsis; + overflow: hidden; + direction: rtl; + } + .CLASS13 { + font-size: 32768em; + } +</style> +<div class="CLASS2"> + <abbr class="CLASS13">x AxBxC </abbr>C +</div> diff --git a/tests/wpt/web-platform-tests/css/css-text/removing-collapsible-spaces-before-float-crash.html b/tests/wpt/web-platform-tests/css/css-text/removing-collapsible-spaces-before-float-crash.html new file mode 100644 index 00000000000..92bba35e08b --- /dev/null +++ b/tests/wpt/web-platform-tests/css/css-text/removing-collapsible-spaces-before-float-crash.html @@ -0,0 +1,16 @@ +<title>CSS Text Test: Removing collapsible space before a float element cause Chrome to crash</title> +<link rel="help" href="https://crbug.com/1131470"> +<!DOCTYPE html> +<style type="text/css"> + .CLASS9 { + zoom:1.3%; + padding:8589934592%; + } + .CLASS13 { float:left; } +</style> +<b class="CLASS9"> +> +a C +</b> +<input class="CLASS13"/> +c |