Index: chrome/test/data/devtools/push_test_page.html |
diff --git a/chrome/test/data/devtools/push_test_page.html b/chrome/test/data/devtools/push_test_page.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..059c719e1c936efc9ad2468374204f136e6671f3 |
--- /dev/null |
+++ b/chrome/test/data/devtools/push_test_page.html |
@@ -0,0 +1,12 @@ |
+<html> |
+<script> |
+function addImage(url) |
+{ |
+ var image = document.createElement("img"); |
+ image.src = url; |
+ document.body.appendChild(image); |
+} |
+</script> |
+<body> |
+</body> |
+</html> |