Chromium Code Reviews| Index: chrome/test/data/android/page_with_iframe_as_content_url.html |
| diff --git a/chrome/test/data/android/page_with_iframe_as_content_url.html b/chrome/test/data/android/page_with_iframe_as_content_url.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6a3307c8fa57006acfa7eb936758c3b07019c037 |
| --- /dev/null |
| +++ b/chrome/test/data/android/page_with_iframe_as_content_url.html |
| @@ -0,0 +1,16 @@ |
| +<html> |
| + |
| +<head> |
| + <script> |
| + onmessage = function(e) { |
| + document.title = e.data; |
| + } |
| + </script> |
| +</head> |
| + |
| +<body> |
| + <iframe id='iframe_test_id' src="content://org.chromium.chrome.test.TestContentProvider/simple_iframe.html" > |
| + </iframe> |
| +</body> |
| + |
| +</html> |