Index: chrome_frame/test/data/privileged_apis_host.html |
diff --git a/chrome_frame/test/data/privileged_apis_host.html b/chrome_frame/test/data/privileged_apis_host.html |
index 052b2769ca713a7f924d93a741f56709a8837964..434773099ebdafc59b1a09e14a8268d02174a21c 100644 |
--- a/chrome_frame/test/data/privileged_apis_host.html |
+++ b/chrome_frame/test/data/privileged_apis_host.html |
@@ -69,23 +69,20 @@ |
Test running.... |
</div> |
+ <span id='ChromeFrameSpan'></span> |
<!-- TODO(siggi): Test setting onprivatemessage in these params --> |
- <object id='ChromeFrame' width='500' height='500' |
- codebase='http://www.google.com' |
- classid='CLSID:E0A900DF-9611-4446-86BD-4B1D47E7DB2A'> |
- <param name='src' value='privileged_apis_frame.html'> |
- <param name='onload' value='OnChromeFrameLoaded(arguments[0]);'> |
- <param name='onloaderror' value='OnNavigationFailed();'> |
- <param name='onmessage' value='OnChromeFrameMessage(arguments[0]);'> |
- <embed id='ChromeFramePlugin' width='500' height='500' name='ChromeFrame' |
- src='privileged_apis_frame.html' |
- type='application/chromeframe' |
- onload='OnChromeFrameLoaded(arguments[0]);' |
- onloaderror='OnNavigationFailed();' |
- onmessage='return OnChromeFrameMessage(arguments[0]);' |
- privileged_mode='1' |
- </embed> |
- </object> |
+ <script type='text/javascript'> |
+insertControl( |
+ 'ChromeFrameSpan', |
+ { "src": "privileged_apis_frame.html", |
+ "eventHandlers": { |
+ "onload": "OnChromeFrameLoaded(arguments[0]);", |
+ "onloaderror": "OnNavigationFailed();", |
+ "onmessage": "return OnChromeFrameMessage(arguments[0]);" |
+ }, |
+ "embedAttributes": { "privileged_mode": "1" } |
+ }); |
+ </script> |
<p>Tests that privileged apis are unavailable from regular pages</p> |
</body> |
</html> |