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

Unified Diff: chrome/test/data/extensions/api_test/declarative_content/overview/background.js

Issue 12326052: Using the new webkit CSS change notification instead of a mutation observer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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/extensions/api_test/declarative_content/overview/background.js
diff --git a/chrome/test/data/extensions/api_test/declarative_content/overview/background.js b/chrome/test/data/extensions/api_test/declarative_content/overview/background.js
index a23b54653eec856a030fe9698d1c8a4dd5d33914..663c36ded83da4799dd67ed7b76b2153b617e0a2 100644
--- a/chrome/test/data/extensions/api_test/declarative_content/overview/background.js
+++ b/chrome/test/data/extensions/api_test/declarative_content/overview/background.js
@@ -9,7 +9,9 @@ var ShowPageAction = chrome.declarativeContent.ShowPageAction;
var rule0 = {
conditions: [new PageStateMatcher({pageUrl: {hostPrefix: "test1"}}),
- new PageStateMatcher({css: ["input[type='password']"]})],
+ // TODO(jyasskin): Normalize the CSS selector value and switch
+ // this back to single quotes.
+ new PageStateMatcher({css: ["input[type=\"password\"]"]})],
actions: [new ShowPageAction()]
}
« no previous file with comments | « chrome/renderer/resources/extensions/content_watcher.js ('k') | content/public/renderer/render_view_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698