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

Unified Diff: chrome/test/data/extensions/api_test/webnavigation/navigation/iframe/d.html

Issue 3561008: Implement the frame id required for the web navigation api. (Closed)
Patch Set: updates Created 10 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/api_test/webnavigation/navigation/iframe/d.html
diff --git a/chrome/test/data/extensions/api_test/webnavigation/navigation/iframe/d.html b/chrome/test/data/extensions/api_test/webnavigation/navigation/iframe/d.html
new file mode 100644
index 0000000000000000000000000000000000000000..a2d0b4492237d4a281052efc37bc12e81f84a601
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/webnavigation/navigation/iframe/d.html
@@ -0,0 +1,10 @@
+<html><body>
+<script>
+ window.setTimeout(function() {
+ var iframe = document.createElement('iframe');
+ iframe.src = "f.html";
+ var div = document.getElementById('f');
+ div.appendChild(iframe);
+ }, 500);
+</script>
+<iframe src="e.html"></iframe><div id="f"></div></body></html>
« no previous file with comments | « chrome/renderer/render_view.cc ('k') | chrome/test/data/extensions/api_test/webnavigation/navigation/iframe/e.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698