1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/xbl/test/file_bug379959_data.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<head> 1.7 +<style> 1.8 +#d { 1.9 + color: green; 1.10 + -moz-binding: url(data:text/xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%3F%3E%0A%3Cbindings%20id%3D%22xbltestBindings%22%20xmlns%3D%22http%3A//www.mozilla.org/xbl%22%3E%0A%20%20%3Cbinding%20id%3D%22xbltest%22%3E%3Ccontent%3EPASS%3C/content%3E%3C/binding%3E%0A%3C/bindings%3E%0A); 1.11 +} 1.12 +</style> 1.13 +<body> 1.14 +<div id="d"></div> 1.15 +<script> 1.16 +onload = function() { 1.17 + nodes = SpecialPowers.wrap(document).getAnonymousNodes(document.getElementById('d')); 1.18 + parent.postMessage(nodes ? nodes.length : 0, "http://mochi.test:8888"); 1.19 +} 1.20 +</script> 1.21 +</html>