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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/events/document-no-frame-events-no-crash.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>
3 This tests that setting an event handler to a document element created by
4 document.implementation.createDocument does not crash the renderer.
5
6 <script>
7 if (window.layoutTestController) {
8 window.layoutTestController.dumpAsText();
9 }
10
11 if (document.implementation && document.implementation.createDocument) {
12 var doc = document.implementation.createDocument('', '', null);
13 doc.onload = function() { };
14 }
15 </script>
16 </body>
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698