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

Unified Diff: chrome/test/data/local_ntp_browsertest.html

Issue 2684593002: [Local NTP] Cleanup: Don't create HTML elements dynamically (Closed)
Patch Set: tests Created 3 years, 10 months 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/local_ntp_browsertest.html
diff --git a/chrome/test/data/local_ntp_browsertest.html b/chrome/test/data/local_ntp_browsertest.html
index 59d6865dc43333cbd6a6b0e56351125cbfa8cd25..928a91e8156f491d482dd43fce02151250b79495 100644
--- a/chrome/test/data/local_ntp_browsertest.html
+++ b/chrome/test/data/local_ntp_browsertest.html
@@ -12,8 +12,19 @@
<script src="local_ntp_browsertest.js"></script>
<template id="local-ntp-body">
<div id="ntp-contents">
+ <div id="logo" title="Google"></div>
+ <div id="fakebox">
+ <div id="fakebox-text"></div>
+ <input id="fakebox-input" autocomplete="off" tabindex="-1" type="url"
+ aria-hidden="true">
+ <div id="cursor"></div>
+ </div>
<div id="most-visited">
- <div id="mv-tiles"></div>
+ <!-- The container for the tiles. -->
+ <div id="mv-tiles">
+ <!-- The src is set dynamically, since it's used to pass params. -->
+ <iframe id="mv-single" tabindex=1></iframe>
+ </div>
<!-- Notification shown when a tile is blacklisted. -->
<div id="mv-notice" class="mv-notice-hide">
<span id="mv-msg"></span>

Powered by Google App Engine
This is Rietveld 408576698