Bug 1423013 - Add a web platform test checking documentElement clientWidth is `Initial Containing Block` size even if there is visible overlow:hidden region due to minimum-scale. r=botond

Differential Revision: https://phabricator.services.mozilla.com/D15344

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Hiroyuki Ikezoe 2019-01-15 09:47:48 +00:00
Родитель c42c2ac75f
Коммит a12d8909c9
1 изменённых файлов: 29 добавлений и 0 удалений

Просмотреть файл

@ -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>