mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision b'421155a1c8752a36b465e62f466b18f821190e08'
This commit is contained in:
parent
871cefc926
commit
fd56698ec7
722 changed files with 19686 additions and 8130 deletions
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSS Values and Units Test: rch invalidation</title>
|
||||
<link rel="author" title="Daniil Sakhapov" href="sakhapov@google.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-values/#font-relative-lengths">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<meta name="assert" content="test rch invalidation">
|
||||
<style>
|
||||
@import url("/fonts/ahem.css");
|
||||
html {
|
||||
font-family: 'Ahem';
|
||||
font-size: 40px;
|
||||
}
|
||||
body {
|
||||
font-family: monospace;
|
||||
font-size: 20px;
|
||||
}
|
||||
div {
|
||||
width: 10rch;
|
||||
}
|
||||
</style>
|
||||
|
||||
<html>
|
||||
<body>
|
||||
<div id="div"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<script>
|
||||
setup({ single_test: true });
|
||||
let old_width = div.getBoundingClientRect().width;
|
||||
document.documentElement.style.fontFamily = "sans-serif";
|
||||
let new_width = div.getBoundingClientRect().width;
|
||||
assert_not_equals(old_width, new_width, "expect the width of zero of Ahem and sans-serif to be different");
|
||||
done();
|
||||
</script>
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSS Values and Units Test: ric invalidation</title>
|
||||
<link rel="author" title="Daniil Sakhapov" href="sakhapov@google.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-values/#font-relative-lengths">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<meta name="assert" content="test ric invalidation">
|
||||
<style>
|
||||
@import url("/fonts/ahem.css");
|
||||
html {
|
||||
font-family: 'Ahem';
|
||||
font-size: 40px;
|
||||
}
|
||||
body {
|
||||
font-family: monospace;
|
||||
font-size: 20px;
|
||||
}
|
||||
div {
|
||||
width: 10ric;
|
||||
}
|
||||
</style>
|
||||
|
||||
<html>
|
||||
<body>
|
||||
<div id="div"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<script>
|
||||
setup({ single_test: true });
|
||||
let old_width = div.getBoundingClientRect().width;
|
||||
document.documentElement.style.fontSize = "41px";
|
||||
let new_width = div.getBoundingClientRect().width;
|
||||
assert_not_equals(old_width, new_width, "expect update of ric units with font size change");
|
||||
done();
|
||||
</script>
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSS Values and Units Test: rlh invalidation</title>
|
||||
<link rel="author" title="Daniil Sakhapov" href="sakhapov@google.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-values/#font-relative-lengths">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<meta name="assert" content="test rlh invalidation">
|
||||
<style>
|
||||
@import url("/fonts/ahem.css");
|
||||
html {
|
||||
font-family: 'Ahem';
|
||||
font-size: 40px;
|
||||
line-height: 2;
|
||||
}
|
||||
body {
|
||||
font-family: monospace;
|
||||
font-size: 20px;
|
||||
line-height: 5;
|
||||
}
|
||||
div {
|
||||
width: 10rlh;
|
||||
}
|
||||
</style>
|
||||
|
||||
<html>
|
||||
<body>
|
||||
<div id="div"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<script>
|
||||
setup({ single_test: true });
|
||||
let old_width = div.getBoundingClientRect().width;
|
||||
document.documentElement.style.lineHeight = "4";
|
||||
let new_width = div.getBoundingClientRect().width;
|
||||
assert_not_equals(old_width, new_width, "expect rlh units to update on line-height update");
|
||||
old_width = new_width;
|
||||
document.documentElement.style.fontSize = "41px";
|
||||
new_width = div.getBoundingClientRect().width;
|
||||
assert_not_equals(old_width, new_width, "expect rlh units to update on font-size update");
|
||||
done();
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue