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

Unified Diff: Source/core/css/quirks.css

Issue 417353004: Use explicit case-insensitive attribute-value matching in UA-stylesheets (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « Source/core/css/mediaControls.css ('k') | Source/core/css/themeChromiumAndroid.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/quirks.css
diff --git a/Source/core/css/quirks.css b/Source/core/css/quirks.css
index 4845591d6007583247e8abf7634b9143fdc8062f..38e3ac83615055da0af8a6dea483bbdc4186e1cc 100644
--- a/Source/core/css/quirks.css
+++ b/Source/core/css/quirks.css
@@ -22,10 +22,10 @@
*/
/* Give floated images margins of 3px */
-img[align="left"] {
+img[align="left" i] {
margin-right: 3px;
}
-img[align="right"] {
+img[align="right" i] {
margin-left: 3px;
}
@@ -43,7 +43,7 @@ table {
}
/* This will apply only to text fields, since all other inputs already use border box sizing */
-input:not([type=image]), textarea {
+input:not([type=image i]), textarea {
box-sizing: border-box;
}
« no previous file with comments | « Source/core/css/mediaControls.css ('k') | Source/core/css/themeChromiumAndroid.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698