mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
26 lines
639 B
HTML
26 lines
639 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#div1 {
|
|
color: green;
|
|
-moz-binding: url(file_bug379959_xbl.xml#xbltest);
|
|
}
|
|
#div2 {
|
|
color: green;
|
|
-moz-binding: url(http://example.com/tests/content/xbl/test/file_bug379959_xbl.xml#xbltest);
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="div1"></div>
|
|
<div id="div2"></div>
|
|
<script>
|
|
onload = function() {
|
|
nodes = document.getAnonymousNodes(document.getElementById('div1'));
|
|
parent.postMessage(nodes ? nodes.length : 0, "http://mochi.test:8888");
|
|
nodes = document.getAnonymousNodes(document.getElementById('div2'));
|
|
parent.postMessage(nodes ? nodes.length : 0, "http://mochi.test:8888");
|
|
}
|
|
</script>
|
|
</html>
|