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

Side by Side Diff: chrome/test/data/safe_browsing/download_protection/navigation_observer/page_before_landing_referrer.html

Issue 2538483002: Add management related code to SafeBrowsingNavigationObserverManager (Closed)
Patch Set: rebase-update 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>
Charlie Reis 2016/12/09 22:00:26 Same.
Jialiu Lin 2016/12/12 23:43:38 Done.
4 // Click on a link by id to star a test case.
Charlie Reis 2016/12/09 22:00:26 start
Jialiu Lin 2016/12/12 23:43:38 Done.
5 function clickLink(linkId) {
6 var node = document.getElementById(linkId);
7 if (node != null) {
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_referrer" href="landing_referrer.html">
16 Link to landing referrer
17 </a><br>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698