diff options
Diffstat (limited to 'layout/reftests/bugs/391909-1-ref.html')
-rw-r--r-- | layout/reftests/bugs/391909-1-ref.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/layout/reftests/bugs/391909-1-ref.html b/layout/reftests/bugs/391909-1-ref.html new file mode 100644 index 0000000000..e30535dd91 --- /dev/null +++ b/layout/reftests/bugs/391909-1-ref.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <body> + <div id="source" style="width: 3ch"></div> + <div id="target" style="width: 0"> + This is a test + </div> + <script> + document.getElementById("target").style.lineHeight = + document.defaultView + .getComputedStyle(document.getElementById("source")).width; + </script> + </body> +</html> |