summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/536623-1.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'layout/base/crashtests/536623-1.xhtml')
-rw-r--r--layout/base/crashtests/536623-1.xhtml37
1 files changed, 37 insertions, 0 deletions
diff --git a/layout/base/crashtests/536623-1.xhtml b/layout/base/crashtests/536623-1.xhtml
new file mode 100644
index 000000000..b01e6a018
--- /dev/null
+++ b/layout/base/crashtests/536623-1.xhtml
@@ -0,0 +1,37 @@
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+
+<bindings
+ xmlns="http://www.mozilla.org/xbl"
+ xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+ xmlns:xbl="http://www.mozilla.org/xbl"
+ xmlns:html="http://www.w3.org/1999/xhtml">
+
+ <binding id="qwe">
+ <content>
+ <xul:label style="-moz-binding: url(#xar)" xbl:inherits="xbl:text=label" flex="1"/>
+ </content>
+ </binding>
+
+ <binding id="xar">
+ <content>
+ <html:table><children/></html:table>
+ </content>
+ </binding>
+
+</bindings>
+
+<script type="text/javascript">
+function boom()
+{
+ document.getElementById("b").setAttribute('label', "1 2 3");
+ document.documentElement.offsetHeight;
+ document.getElementById("b").removeAttribute('label');
+}
+</script>
+</head>
+
+<body onload="boom();">
+<div style="width: 0px;"><box id="b" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" style="-moz-binding: url(#qwe);"/></div>
+</body>
+</html>