summaryrefslogtreecommitdiffstats
path: root/browser/components/search/test/browser/slow_loading_page_with_ads_on_load_event.html
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/search/test/browser/slow_loading_page_with_ads_on_load_event.html')
-rw-r--r--browser/components/search/test/browser/slow_loading_page_with_ads_on_load_event.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/browser/components/search/test/browser/slow_loading_page_with_ads_on_load_event.html b/browser/components/search/test/browser/slow_loading_page_with_ads_on_load_event.html
new file mode 100644
index 0000000000..307b24d4fe
--- /dev/null
+++ b/browser/components/search/test/browser/slow_loading_page_with_ads_on_load_event.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+</head>
+<body id='body'>
+</body>
+ <img src="https://example.org/browser/browser/components/search/test/browser/slow_loading_page_with_ads.sjs">
+ <script>
+ setTimeout(() => {
+ let body = document.getElementById('body');
+ let ad1 = document.createElement('a');
+ ad1.setAttribute('id', 'ad1');
+ ad1.setAttribute('href', 'https://example.com/ad');
+ ad1.innerHTML = 'Ad link'
+
+ let ad2 = document.createElement('a');
+ ad2.setAttribute('id', 'ad2');
+ ad2.setAttribute('href', 'https://example.com/ad2');
+ ad2.innerHTML = 'Second Ad link'
+
+ let frame = document.createElement('iframe');
+ frame.setAttribute('src', 'searchTelemetry.html');
+
+ body.appendChild(ad1);
+ body.appendChild(ad2);
+ body.appendChild(frame);
+ }, 2000);
+ </script>
+</html>