1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/xbl/test/bug310107-resource.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,21 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 + <head> 1.6 + <style> 1.7 + #bar { 1.8 + -moz-binding: url("#binding"); 1.9 + } 1.10 + </style> 1.11 + <bindings xmlns="http://www.mozilla.org/xbl"> 1.12 + <binding id="binding"> 1.13 + <implementation> 1.14 + <property name="prop" readonly="true" exposeToUntrustedContent="true" 1.15 + onget="return 2;"/> 1.16 + </implementation> 1.17 + </binding> 1.18 + </bindings> 1.19 + </head> 1.20 + <!-- Use a timeout so that we get bfcached --> 1.21 + <body onload="setTimeout(window.opener.runTest, 100)"> 1.22 + <div id="bar"></div> 1.23 + </body> 1.24 +</html>