blob: 3bea448c7fd3a1b29ee32dcae23b7268e2d32ce6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<html class="reftest-wait">
<style>
.c {
scroll-behavior: smooth;
border-style: groove;
}
* {
margin-right: 52vh;
width: 1vh
}
:not(feTile) {
overflow-x: scroll;
}
</style>
<script>
function go() {
a.scrollTo({left: 1, top: 80})
document.documentElement.removeAttribute("class");
}
</script>
<body onload=go()>
<table background="A">
A
<dl>
<dd id="a" contenteditable="true" class="c">
</html>
|