1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/base/content/test/general/test_wyciwyg_copying.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,13 @@ 1.4 +<html> 1.5 +<body> 1.6 +<script> 1.7 + function go() { 1.8 + var w = window.open(); 1.9 + w.document.open(); 1.10 + w.document.write("<html><body>test document</body></html>"); 1.11 + w.document.close(); 1.12 + } 1.13 +</script> 1.14 +<button id="btn" onclick="go();">test</button> 1.15 +</body> 1.16 +</html>