mirror of
https://github.com/servo/servo.git
synced 2025-08-15 10:25:32 +01:00
Update web-platform-tests to revision 00fa50687cab43b660296389acad6cc48717f1d1
This commit is contained in:
parent
07d53e32c4
commit
28bbe1473c
58 changed files with 2119 additions and 360 deletions
|
@ -0,0 +1,29 @@
|
|||
<!doctype html>
|
||||
<meta charset=utf-8>
|
||||
<meta name="viewport" content="width=device-width minimum-scale=0.5">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-device-adapt/">
|
||||
<style>
|
||||
html {
|
||||
overflow: hidden;
|
||||
}
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
div {
|
||||
height: 200%;
|
||||
position: absolute;
|
||||
}
|
||||
</style>
|
||||
<title></title>
|
||||
<div style="width: 200%;"></div>
|
||||
<div id="reference" style="width: 100%;"></div>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<script>
|
||||
'use strict';
|
||||
test(() => {
|
||||
assert_equals(document.documentElement.clientWidth, reference.clientWidth,
|
||||
'documentElement clientWidth should be 100%');
|
||||
}, 'documentElement clientWidth should be equal to device-width even if ' +
|
||||
'overflow:hidden region is visible');
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue