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

Unified Diff: components/test/data/autofill/automated_integration/action_recorder_extension/popup/popup.html

Issue 2116583004: Automated Autofill testing library + extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed nits, reduced preferences Created 4 years, 5 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: components/test/data/autofill/automated_integration/action_recorder_extension/popup/popup.html
diff --git a/components/test/data/autofill/automated_integration/action_recorder_extension/popup/popup.html b/components/test/data/autofill/automated_integration/action_recorder_extension/popup/popup.html
new file mode 100644
index 0000000000000000000000000000000000000000..bba14a49507774f334945202d53249a26568357b
--- /dev/null
+++ b/components/test/data/autofill/automated_integration/action_recorder_extension/popup/popup.html
@@ -0,0 +1,41 @@
+<!doctype html>
+<html>
+ <head>
+ <title>Action Recorder Extension</title>
+ <style>
+ body {
+ overflow: hidden;
+ margin: 0px;
+ padding: 0px;
+ background: white;
+ }
+ div:first-child {
+ margin-top: 0px;
+ }
+ div {
+ cursor: pointer;
+ text-align: center;
+ padding: 5px;
+ font-family: sans-serif;
+ font-size: 1em;
+ width: 100px;
+ margin-top: 1px;
+ background: #f5f5f5;
+ border: #c8c8c8 1px solid;
+ }
+ div:hover {
+ background: #e8e8e8;
+ }
+ .hidden {
+ display: none;
+ }
+ </style>
+ </head>
+ <body>
+ <div id="start" class="hidden">Start</div>
+ <div id="next-site" class="hidden">Next Site</div>
+ <div id="stop" class="hidden">Stop &amp; Copy</div>
+ <div id="cancel" class="hidden">Cancel</div>
+ <script src="popup.js"></script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698