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

Side by Side 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, 4 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 <!DOCTYPE html>
2 <html>
3 <head></head>
4 <body>
5 </body>
6 <script>
7 function appendToDOM(url) {
8 var object = document.createElement("object");
9 var embed = document.createElement("embed");
10 embed.src = url;
11 object.appendChild(embed);
12 document.body.appendChild(object);
13 }
14 </script>
15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698