mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
14 lines
375 B
HTML
14 lines
375 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
|
|
<link rel="help" href="https://crbug.com/1412020">
|
|
<div id="outer">
|
|
x
|
|
<div id="inner" style="display:none; columns:1; padding-left:1%;"></div>
|
|
</div>
|
|
<script>
|
|
document.body.offsetTop;
|
|
outer.style.columns = "1";
|
|
inner.style.display = "block";
|
|
</script>
|
|
</html>
|