testing/web-platform/tests/css/css-values/viewport-units-scrollbars-auto-ltr-001-ref.html
author Emilio Cobos Álvarez <emilio@crisal.io>
Thu, 10 Jul 2025 09:08:54 +0000 (5 hours ago)
changeset 795952 1d422913e1cb1658224a2d269f8e4c9e80032d29
parent 699420 89b1aa172602c86c1a1020b74092bea7a6125d75
permissions -rw-r--r--
Bug 1976623 - Create drag popups eagerly for now. r=tnikkel,layout-reviewers Trivially restores pre-regression behavior, for now. Differential Revision: https://phabricator.services.mozilla.com/D256769
<!DOCTYPE html>
<title>CSS Values and Units Test: Viewport units and scrollbars</title>
<meta charset="UTF-8">
<link rel="author"  title="fantasai" href="http://fantasai.inkedblade.net/contact">


<!-- This reference assumes that a <div> scrollbar looks identical to the root scrollbar. -->
<style>
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  width: 100%;
  height: 100%;
  background: white;
  overflow: auto;
}
div {
  width: 200%;
  height: 200%;
  border-right: solid blue 4px;
  border-bottom: solid blue 4px;
}
</style>

<div></div>