blob: d723c1276ba59bdaa3671d003a90725dff9187d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html>
<link rel="help" href="https://crbug.com/1303287">
<style>
html {
display: table;
border-right: solid;
}
head { display: inline; }
body { direction: rtl; }
</style>
<body></body>
<script>
requestAnimationFrame(() => requestAnimationFrame(() => document.body.remove()));
</script>
|