summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/423130-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/423130-1.html')
-rw-r--r--layout/reftests/bugs/423130-1.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/bugs/423130-1.html b/layout/reftests/bugs/423130-1.html
new file mode 100644
index 0000000000..43dded9bae
--- /dev/null
+++ b/layout/reftests/bugs/423130-1.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<script type="text/javascript">
+function boom()
+{
+ var s = document.getElementById("s");
+ s.removeChild(s.lastChild);
+}
+</script>
+<style type="text/css">
+div {
+ float: left;
+ border: medium solid black;
+}
+</style>
+</head>
+<body onload="boom();">
+<div><span style="padding-right: 10em;" id="s"><br>&rlm;</span></div>
+</body>
+</html>