20 lines
415 B
HTML
20 lines
415 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<script src="/tests/SimpleTest/paint_listener.js"></script>
|
|
<script src="/browser/gfx/layers/apz/test/mochitest/apz_test_utils.js"></script>
|
|
<script src="/browser/gfx/layers/apz/test/mochitest/apz_test_native_event_utils.js"></script>
|
|
<style>
|
|
html {
|
|
overflow-x: scroll;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
}
|
|
div {
|
|
height: 100vh;
|
|
width: 110vw;
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
<div></div>
|
|
</html>
|