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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/resources/frame-attached-stacktrace-page.html

Issue 2947303002: [DevTools] Migrate inspector-protocol/{page,dom-snapshot} tests to new harness (Closed)
Patch Set: rebased Created 3 years, 5 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
OLDNEW
(Empty)
1 <script>
2
3
4
5
6 function createFrame()
7 {
8 var frame = document.createElement("iframe");
9 frame.src = "data:text/html,<html><body><script>%0A" +
10 "var innerFrame = document.createElement('iframe');%0A" +
11 "innerFrame.src = 'about:blank';%0A" +
12 "document.body.appendChild(innerFrame);%0A" +
13 "<" + "/script></body></html>";
14 document.body.appendChild(frame);
15 }
16 </script>
17 <iframe src="about:blank" />
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698