Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/resources/wrapper-context-inner.html

Issue 55025: Remove tests that have been upstreamed. Update test_expectations list... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <body onload="notifyLoaded()">
3 <script>
4 function notifyLoaded() {
5 top.innerHasLoaded();
6 }
7
8 // After the top frame has accessed the document of this frame, we
9 // test that the document wrapper was created in this context and
10 // not in the top context.
11 function runTest() {
12 var paragraph = document.createElement('p');
13 if (HTMLElement.prototype.isPrototypeOf(paragraph)) {
14 top.writeOutput("PASS");
15 } else {
16 top.writeOutput("FAIL");
17 }
18 if (window.layoutTestController) {
19 layoutTestController.notifyDone();
20 }
21 }
22 </script>
23 </body>
24 </html>
OLDNEW
« no previous file with comments | « webkit/data/layout_tests/chrome/fast/dom/resources/1.gif ('k') | webkit/data/layout_tests/chrome/fast/dom/script_lineno.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698