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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4 // 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.
5 function clickLink(linkId) {
6 var node = document.getElementById(linkId);
7 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.
8 // Click and open link in the same tab.
9 node.click();
10 }
11 }
12 </script>
13 </head>
14 <body>
15 <a id="link_to_landing" href="landing.html">
16 Link to landing
17 </a><br>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698