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

Unified Diff: chrome/test/data/pdf/test-embed-pdf.html

Issue 2891923005: Revert of Save pdf file instead of web page through context menu for embedded pdf file (Closed)
Patch Set: Created 3 years, 7 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/pdf/test-embed-pdf.html
diff --git a/chrome/test/data/pdf/test-embed-pdf.html b/chrome/test/data/pdf/test-embed-pdf.html
deleted file mode 100644
index 4d75f6b401316c820c9b4dfc3cda4b296162844a..0000000000000000000000000000000000000000
--- a/chrome/test/data/pdf/test-embed-pdf.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<html>
-<body>
-
-<button id="link1" onclick="openPdf()">Click me to load pdf</button>
-<div id="container"></div>
-
-<script>
-function openPdf() {
- var embeddedElem = document.createElement("embed");
- embeddedElem.src = "test.pdf";
- document.getElementById("container").appendChild(embeddedElem);
-}
-</script>
-
-<body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698