mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
556 B
HTML
28 lines
556 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style>
|
|
#a:first-child::first-line { }
|
|
</style>
|
|
<script>
|
|
function runTest() {
|
|
document.getElementById("a").removeAttribute('style');
|
|
document.body.offsetWidth;
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</head><body onload="runTest()">
|
|
|
|
<div style="position:absolute;">
|
|
<span id="a" style="position:fixed;">
|
|
<span>
|
|
<span style="display:table;position:absolute;">
|
|
</span>
|
|
</span>
|
|
Loading this should not crash Mozilla
|
|
</span>
|
|
</div>
|
|
|
|
|
|
</body></html>
|