mirror of
https://github.com/servo/servo.git
synced 2025-08-14 01:45:33 +01:00
Update web-platform-tests to revision e426a6933a05bf144eba06a1d4c47ba876a4e2d1
This commit is contained in:
parent
415b26e4f1
commit
5e5eccabf8
495 changed files with 14920 additions and 784 deletions
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element - reference</title>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">bbbbbb<br>bbbb</div>
|
||||
<div class="testdiv">bbbbbb<br>bbbb</div>
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element - reference</title>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaa bb<br>bbbb</div>
|
||||
<div class="testdiv">aaa bb<br>bbbb</div>
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element - reference</title>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaaabb<br>bbbb</div>
|
||||
<div class="testdiv">aaaabb<br>bbbb</div>
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element - reference</title>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaaaaaa<br>bbb</div>
|
||||
<div class="testdiv">aaaaaaa<br>bbb</div>
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element - reference</title>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaa bb<br>bbbbbb<br>bbb<br>ccc</div>
|
||||
<div class="testdiv">aaa bb<br>bbbbbb<br>bbb<br>ccc</div>
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element - reference</title>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaaabb<br>bbbbbb<br>bbbccccc</div>
|
||||
<div class="testdiv">aaaabb<br>bbbbbb<br>bbbccccc</div>
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element - reference</title>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaaaaaa<br>bbbbbb<br>bcccccc</div>
|
||||
<div class="testdiv">aaaaaaa<br>bbbbbb<br>bcccccc</div>
|
|
@ -30,5 +30,5 @@ div {
|
|||
}
|
||||
</style>
|
||||
<p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p>
|
||||
<div class="red">X<br>XX X<br>X X <br>XX X</div>
|
||||
<div class="red">X X <br>X X <br>X X <br>XX X</div>
|
||||
<div class="test">X XX XX X XX X</div>
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element</title>
|
||||
<meta name="assert" content="word-break: break-all works when specified on inline element">
|
||||
<link rel='help' href='https://drafts.csswg.org/css-text-3/#word-break-property'>
|
||||
<link rel='match' href='reference/word-break-break-all-inline-001-ref.html'>
|
||||
<link rel='author' title='Jonathan Kew' href='mailto:jkew@mozilla.com'>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
.test { word-break: break-all; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv"><span class="test">bbbbbbbbbb</span></div>
|
||||
<div class="testdiv">bbbbbb<br>bbbb</div>
|
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element</title>
|
||||
<meta name="assert" content="word-break: break-all works when specified on inline element">
|
||||
<link rel='help' href='https://drafts.csswg.org/css-text-3/#word-break-property'>
|
||||
<link rel='match' href='reference/word-break-break-all-inline-002-ref.html'>
|
||||
<link rel='author' title='Jonathan Kew' href='mailto:jkew@mozilla.com'>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
.test { word-break: break-all; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaa <span class="test">bbbbbb</span></div>
|
||||
<div class="testdiv">aaa bb<br>bbbb</div>
|
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element</title>
|
||||
<meta name="assert" content="word-break: break-all works when specified on inline element">
|
||||
<link rel='help' href='https://drafts.csswg.org/css-text-3/#word-break-property'>
|
||||
<link rel='match' href='reference/word-break-break-all-inline-003-ref.html'>
|
||||
<link rel='author' title='Jonathan Kew' href='mailto:jkew@mozilla.com'>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
.test { word-break: break-all; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaaa<span class="test">bbbbbb</span></div>
|
||||
<div class="testdiv">aaaabb<br>bbbb</div>
|
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element</title>
|
||||
<meta name="assert" content="word-break: break-all works when specified on inline element">
|
||||
<link rel='help' href='https://drafts.csswg.org/css-text-3/#word-break-property'>
|
||||
<link rel='match' href='reference/word-break-break-all-inline-004-ref.html'>
|
||||
<link rel='author' title='Jonathan Kew' href='mailto:jkew@mozilla.com'>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
.test { word-break: break-all; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaaaaaa<span class="test">bbb</span></div>
|
||||
<div class="testdiv">aaaaaaa<br>bbb</div>
|
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element</title>
|
||||
<meta name="assert" content="word-break: break-all works when specified on inline element">
|
||||
<link rel='help' href='https://drafts.csswg.org/css-text-3/#word-break-property'>
|
||||
<link rel='match' href='reference/word-break-break-all-inline-005-ref.html'>
|
||||
<link rel='author' title='Jonathan Kew' href='mailto:jkew@mozilla.com'>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
.test { word-break: break-all; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaa <span class="test">bbbbbbbbbbb</span> ccc</div>
|
||||
<div class="testdiv">aaa bb<br>bbbbbb<br>bbb<br>ccc</div>
|
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element</title>
|
||||
<meta name="assert" content="word-break: break-all works when specified on inline element">
|
||||
<link rel='help' href='https://drafts.csswg.org/css-text-3/#word-break-property'>
|
||||
<link rel='match' href='reference/word-break-break-all-inline-006-ref.html'>
|
||||
<link rel='author' title='Jonathan Kew' href='mailto:jkew@mozilla.com'>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
.test { word-break: break-all; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaaa<span class="test">bbbbbbbbbbb</span>ccccc</div>
|
||||
<div class="testdiv">aaaabb<br>bbbbbb<br>bbbccccc</div>
|
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>word-break: break-all on inline element</title>
|
||||
<meta name="assert" content="word-break: break-all works when specified on inline element">
|
||||
<link rel='help' href='https://drafts.csswg.org/css-text-3/#word-break-property'>
|
||||
<link rel='match' href='reference/word-break-break-all-inline-007-ref.html'>
|
||||
<link rel='author' title='Jonathan Kew' href='mailto:jkew@mozilla.com'>
|
||||
<style>
|
||||
.testdiv { font-family: monospace; width: 6.1ch; padding: 1px; margin: 10px; border: 1px solid silver; }
|
||||
.test { word-break: break-all; }
|
||||
</style>
|
||||
<div>Test passes if the two boxes are the same.</div>
|
||||
<div class="testdiv">aaaaaaa<span class="test">bbbbbbb</span>cccccc</div>
|
||||
<div class="testdiv">aaaaaaa<br>bbbbbb<br>bcccccc</div>
|
Loading…
Add table
Add a link
Reference in a new issue