Update web-platform-tests to revision 2b7dace05fc1869398ee24f84fda4c0e4c0455ae

This commit is contained in:
WPT Sync Bot 2018-08-31 21:37:12 +00:00 committed by Tom Servo
parent b23125d590
commit 6c901de216
844 changed files with 19802 additions and 3093 deletions

View file

@ -0,0 +1,7 @@
<!DOCTYPE html>
<body>
<span>
<span style="font-size: 500%">A</span>
x
</span>
</body>

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<link rel="match" href="anonymous-inline-inherit-001-ref.html">
<link rel="help" href="https://drafts.csswg.org/css2/visuren.html#anonymous">
<link rel="author" href="kojii@chromium.org">
<!--
The text node for "x" should be wrapped in an anonymous inline box,
which should have the initial value for non-inherited properties.
https://drafts.csswg.org/css2/visuren.html#anonymous
-->
<body>
<span style="vertical-align: top">
<span style="font-size: 500%">A</span>
x
</span>
</body>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<style>
body {
font-size: 18px;
line-height: 20px;
}
.hb {
font-size: 12px;
vertical-align: top;
}
</style>
<body>
<span class="hb">XX</span>
</body>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<link rel="match" href="vertical-align-nested-top-001-ref.html">
<link rel="help" href="https://drafts.csswg.org/css2/visudet.html#propdef-vertical-align" />
<link rel="author" href="kojii@chromium.org">
<style>
body {
font-size: 18px;
line-height: 20px;
}
.hb {
font-size: 12px;
vertical-align: top;
}
.g2 {
vertical-align: top;
}
</style>
<body>
<span class="hb">X<span class="g2">X</span></span>
</body>