mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
10 lines
524 B
HTML
10 lines
524 B
HTML
<html class="reftest-wait"><head><script>
|
|
function removestyles(i){
|
|
document.getElementById('one').removeAttribute('style');
|
|
document.body.offsetHeight;
|
|
document.getElementById('two').removeAttribute('style');
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script></head><body onload="setTimeout(removestyles,0);"><table style="display: table-row-group;"><table><span id="one" style="display: table-caption;"><i style="position: fixed;"></i><div id="two" style="display: table-caption;"></div></span></body></html>
|