mirror of
https://github.com/servo/servo.git
synced 2025-08-08 23:15:33 +01:00
Update web-platform-tests to revision 90e1ee27eede63cf117f19c1e55553cc1881aef0
This commit is contained in:
parent
5fd4467cb3
commit
3f940e3f4c
89 changed files with 11097 additions and 382 deletions
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Text level 3 Test: inline element boundary and segment break transformations</title>
|
||||
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-3/#text-encoding">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-3/#line-break-transform">
|
||||
<link rel=match href="../../reference/ref-filled-green-100px-square.xht">
|
||||
<meta name="assert" content="intervening inline box boundaries must be ignored for segment break transformations">
|
||||
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
||||
<style>
|
||||
div {
|
||||
font: 20px/1 Ahem;
|
||||
color: green;
|
||||
}
|
||||
#b { border-right: solid 20px green; }
|
||||
#p { padding-right: 20px; background: green; }
|
||||
#m { margin-right: 20px; }
|
||||
#m2 { margin-right: -20px; }
|
||||
|
||||
#red {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background: red;
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
}
|
||||
</style>
|
||||
|
||||
<p>Test passes if there is a filled green square and <strong>no red</strong>.
|
||||
|
||||
<div id=red></div>
|
||||
|
||||
<div>aa​
|
||||
bbb</div>
|
||||
|
||||
<div>aa<span>​</span>
|
||||
bbb</div>
|
||||
|
||||
<div>aa<span id=b>​</span>
|
||||
bb</div>
|
||||
|
||||
<div>aa<span id=p>​</span>
|
||||
bb</div>
|
||||
|
||||
<div>aa<span id=m>​</span><span id=m2></span>
|
||||
bbb</div>
|
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Text level 3 Test: out of flow elements and segment break transformations</title>
|
||||
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-3/#text-encoding">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-text-3/#line-break-transform">
|
||||
<link rel=match href="../../reference/ref-filled-green-100px-square.xht">
|
||||
<meta name="assert" content="Out-of-flow elements must be ignored for segment break transformations">
|
||||
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
||||
<style>
|
||||
div {
|
||||
font: 20px/1 Ahem;
|
||||
color: green;
|
||||
}
|
||||
aside {
|
||||
color: transparent;
|
||||
}
|
||||
#abs { position: absolute; }
|
||||
#fixed { position: fixed; }
|
||||
#float-r { float: right; }
|
||||
#float-l { float: left; margin-left: -3em; }
|
||||
#red {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background: red;
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
}
|
||||
</style>
|
||||
|
||||
<p>Test passes if there is a filled green square and <strong>no red</strong>.
|
||||
|
||||
<div id=red></div>
|
||||
|
||||
<div>aa​
|
||||
bbb</div>
|
||||
|
||||
<div>aa​<aside id=abs>foo</aside>
|
||||
bbb</div>
|
||||
|
||||
<div>aa​<aside id=fixed>foo</aside>
|
||||
bbb</div>
|
||||
|
||||
<div>aa​<aside id=float-r>foo</aside>
|
||||
bbb</div>
|
||||
|
||||
<div>aa​<aside id=float-l>foo</aside>
|
||||
bbb</div>
|
Loading…
Add table
Add a link
Reference in a new issue