blob: af694305a877662001322d2e476f66ddfb23a480 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="go()">
<div id="tweakMe">abc</div>
<script>
function go() {
document.getElementById("tweakMe").style.overflowAnchor = "none";
}
</script>
</window>
|