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

Side by Side Diff: chrome/test/data/safe_browsing/download_protection/navigation_observer/landing.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 nit: Wrong indent.
Jialiu Lin 2016/12/12 23:43:38 Done.
4 // Click on a link by id to star a test case.
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="download_on_landing_page" href="../signed.exe">
16 Direct download from landing page
17 </a><br>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698