diff options
Diffstat (limited to 'layout/reftests/table-anonymous-boxes/208305-4.html')
-rw-r--r-- | layout/reftests/table-anonymous-boxes/208305-4.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/table-anonymous-boxes/208305-4.html b/layout/reftests/table-anonymous-boxes/208305-4.html new file mode 100644 index 000000000..ee8dcbcad --- /dev/null +++ b/layout/reftests/table-anonymous-boxes/208305-4.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <head> + <style id="s"> + span { display: table-cell ! important } + </style> + <script> + function doTest() { + var s = document.getElementById("s"); + s.disabled = true; + document.body.offsetWidth; + s.disabled = false; + document.documentElement.className = ""; + } + </script> + </head> + <body onload="doTest()"> + <span style="display: block">a b</span> + <span style="display: block">c d</span> + </body> +</html> |