summaryrefslogtreecommitdiffstats
path: root/dom/xbl/crashtests/895805-1.xhtml
blob: a6598de9c63166195caddb900b25de41a31db430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:xbl="http://www.mozilla.org/xbl">
<head>
<title>Bug 895805 - Adopting bound element to another document.</title>
<xbl:bindings>
  <xbl:binding id="crash">
    <xbl:content>
      <xbl:children />
      Bug 895805 dummy binding
    </xbl:content>
  </xbl:binding>
</xbl:bindings>
<style type="text/css">
#test {
  -moz-binding:url(#crash);
}
</style>
</head>
<body onload="init()">
<span id="test">Test</span>
<script>
function init() {
  var boundElement = document.getElementById('test');
  var otherDoc = document.implementation.createDocument('', '', null);
  otherDoc.adoptNode(boundElement);
}
</script>
</body>
</html>