Bug 470165 - Cleanup the GTK nsFilePicker code; r+sr=roc
[wine-gecko.git] / content / xbl / test / file_bug379959_cross.html
blobcc46cb8968e5989ca62cbe35ef7cfb11338c6b98
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <style>
5 #div1 {
6 color: green;
7 -moz-binding: url(file_bug379959_xbl.xml#xbltest);
9 #div2 {
10 color: green;
11 -moz-binding: url(http://example.com/tests/content/xbl/test/file_bug379959_xbl.xml#xbltest);
13 </style>
14 <body>
15 <div id="div1"></div>
16 <div id="div2"></div>
17 <script>
18 onload = function() {
19 nodes = document.getAnonymousNodes(document.getElementById('div1'));
20 parent.postMessage(nodes ? nodes.length : 0, "http://localhost:8888");
21 nodes = document.getAnonymousNodes(document.getElementById('div2'));
22 parent.postMessage(nodes ? nodes.length : 0, "http://localhost:8888");
24 </script>
25 </html>