mirror of
https://github.com/servo/servo.git
synced 2025-08-15 02:15:33 +01:00
Update web-platform-tests to revision 58b72393db0bd273bb93268c33666cf893feb985
This commit is contained in:
parent
43a4f01647
commit
64e0a52537
12717 changed files with 59835 additions and 59820 deletions
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Ruby Test: Test line breaking before and after <ruby> elements.</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-ruby-1/#ruby-layout">
|
||||
<meta name="assert" content="est line breaking before and after <ruby> elements">
|
||||
<meta name="flags" content="dom">
|
||||
<link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<style>
|
||||
#container > div {
|
||||
line-height:2;
|
||||
margin-bottom:1em;
|
||||
}
|
||||
</style>
|
||||
<div id="log"></div>
|
||||
<div id="container">
|
||||
<div title="OP+ID" style="width:2em;">あ(かき</div>
|
||||
<div title="ID+CL" style="width:2em;">あい)か</div>
|
||||
<div title="span+CL" style="width:2em;">あ<span>す</span>)か</div>
|
||||
<div title="OP+ruby" style="width:2em;">あ(<ruby>べ<rt>る</rt></ruby>か</div>
|
||||
<div title="ruby+CL" style="width:2em;">あ<ruby>べ<rt>る</rt></ruby>)か</div>
|
||||
<div title="OP+ruby+CL" style="width:3em;">あ(<ruby>べ<rt>る</rt></ruby>)か</div>
|
||||
</div>
|
||||
<script>
|
||||
runTests();
|
||||
function runTests() {
|
||||
var lineHeight = parseFloat(getComputedStyle(container.firstElementChild).lineHeight);
|
||||
Array.prototype.forEach.call(container.children, function (element) {
|
||||
test(function () {
|
||||
var lineCount = element.offsetHeight / lineHeight;
|
||||
assert_approx_equals(lineCount, 3, 0.1);
|
||||
}, element.title);
|
||||
});
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue