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

Unified Diff: ui/webui/resources/css/i18n_process.css

Issue 2889113002: web_dev_style: Fix errors in new directories and enable PRESUBMIT (Closed)
Patch Set: merge+fix Created 3 years, 7 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: ui/webui/resources/css/i18n_process.css
diff --git a/ui/webui/resources/css/i18n_process.css b/ui/webui/resources/css/i18n_process.css
index fce3833d79bae32a50961dc553c01599ccb71e0c..60d66f72f0112e2a0d4d95b577bbb93cb99b449d 100644
--- a/ui/webui/resources/css/i18n_process.css
+++ b/ui/webui/resources/css/i18n_process.css
@@ -3,21 +3,21 @@
* found in the LICENSE file. */
[i18n-content]::before,
-[i18n-values*=".innerHTML:"]::before,
+[i18n-values*='.innerHTML:']::before,
* /deep/ [i18n-content]::before,
-* /deep/ [i18n-values*=".innerHTML:"]::before {
+* /deep/ [i18n-values*='.innerHTML:']::before {
/* Insert a non-breaking space into nodes that have i18n content. */
content: '\00a0';
}
[i18n-processed][i18n-content]::before,
[i18n-processed] [i18n-content]::before,
-[i18n-processed][i18n-values*=".innerHTML:"]::before,
-[i18n-processed] [i18n-values*=".innerHTML:"]::before,
+[i18n-processed][i18n-values*='.innerHTML:']::before,
+[i18n-processed] [i18n-values*='.innerHTML:']::before,
* /deep/ [i18n-processed][i18n-content]::before,
* /deep/ [i18n-processed] [i18n-content]::before,
-* /deep/ [i18n-processed][i18n-values*=".innerHTML:"]::before,
-* /deep/ [i18n-processed] [i18n-values*=".innerHTML:"]::before {
+* /deep/ [i18n-processed][i18n-values*='.innerHTML:']::before,
+* /deep/ [i18n-processed] [i18n-values*='.innerHTML:']::before {
/* Undo the non-breaking space hack after i18n processing has run. */
content: normal;
}

Powered by Google App Engine
This is Rietveld 408576698