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

Unified Diff: chrome/test/data/safe_browsing/download_protection/navigation_observer/landing_referrer.html

Issue 2538483002: Add management related code to SafeBrowsingNavigationObserverManager (Closed)
Patch Set: filter out browser side navigation browser tests Created 4 years 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/safe_browsing/download_protection/navigation_observer/landing_referrer.html
diff --git a/chrome/test/data/safe_browsing/download_protection/navigation_observer/landing_referrer.html b/chrome/test/data/safe_browsing/download_protection/navigation_observer/landing_referrer.html
new file mode 100644
index 0000000000000000000000000000000000000000..709dad5ba72f889055385807409a37aa3cef43ee
--- /dev/null
+++ b/chrome/test/data/safe_browsing/download_protection/navigation_observer/landing_referrer.html
@@ -0,0 +1,19 @@
+<html>
+ <head>
+ <script>
+ // Click on a link by id to star a test case.
Nathan Parker 2016/12/05 22:21:24 "to start"
Jialiu Lin 2016/12/06 23:10:07 Done.
+ function clickLink(linkId) {
+ var node = document.getElementById(linkId);
+ if (node != null) {
Nathan Parker 2016/12/05 22:21:24 nit: Is there any case when this could be null? If
Jialiu Lin 2016/12/06 23:10:07 Sure. sounds good.
+ // Click and open link in the same tab.
+ node.click();
+ }
+ }
+ </script>
+ </head>
+ <body>
+ <a id="link_to_landing" href="landing.html">
+ Link to landing
+ </a><br>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698