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

Unified Diff: chrome/test/data/flash_embeds.html

Issue 2154233003: Rewrite YouTube Flash embeds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/flash_embeds.html
diff --git a/chrome/test/data/flash_embeds.html b/chrome/test/data/flash_embeds.html
new file mode 100644
index 0000000000000000000000000000000000000000..c514334bf5136a8725617faf2711397218905be5
--- /dev/null
+++ b/chrome/test/data/flash_embeds.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+ <head></head>
+ <body>
+ </body>
+ <script>
+ function appendToDOM(url) {
+ var object = document.createElement("object");
+ var embed = document.createElement("embed");
+ embed.src = url;
+ object.appendChild(embed);
+ document.body.appendChild(object);
+ }
+ </script>
+</html>

Powered by Google App Engine
This is Rietveld 408576698