1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/generic/test/test_plugin_clipping_transformed.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +<?xml version="1.0"?> 1.5 +<?xml-stylesheet href="/tests/SimpleTest/test.css" type="text/css"?> 1.6 +<html xmlns="http://www.w3.org/1999/xhtml" title="Test Plugin Clipping: Plugins in Transforms"> 1.7 +<head> 1.8 + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> 1.9 +</head> 1.10 +<body> 1.11 + 1.12 +<script class="testbody" type="application/javascript"> 1.13 +<![CDATA[ 1.14 + 1.15 +var child; 1.16 +function childDone() { 1.17 + child.close(); 1.18 + SimpleTest.executeSoon(SimpleTest.finish); 1.19 +} 1.20 + 1.21 +if (navigator.platform.indexOf("Mac") == 0) { 1.22 + todo(false, "Mac plugins do not run in windowed mode"); 1.23 +} else { 1.24 + SimpleTest.waitForExplicitFinish(); 1.25 + child = window.open("plugin_clipping_helper_transformed.xhtml", "", "width=620,height=320"); 1.26 +} 1.27 +]]> 1.28 +</script> 1.29 + 1.30 +</body> 1.31 +</html>