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

Side by Side Diff: LayoutTests/fast/dom/beforeload/resources/print.js

Issue 205523003: Remove beforeload events. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove more tests Created 6 years, 9 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 function print(message, color)
2 {
3 var paragraph = document.createElement("div");
4 paragraph.appendChild(document.createTextNode(message));
5 paragraph.style.fontFamily = "monospace";
6 if (color)
7 paragraph.style.color = color;
8 document.getElementById("console").appendChild(paragraph);
9 }
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/beforeload/resources/fail.js ('k') | LayoutTests/fast/dom/beforeload/script-before-load.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698