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

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

Issue 442563002: Fix getComputedStyle() for area element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/html.css
diff --git a/Source/core/css/html.css b/Source/core/css/html.css
index b1ad9ac08e36a6200c371329432854a6b2ad9f7e..b07787dbf371dd9cd42a1fd29c27e592a4b69d63 100644
--- a/Source/core/css/html.css
+++ b/Source/core/css/html.css
@@ -650,8 +650,11 @@ datalist {
display: none
}
-area, param {
- display: none
+area {
+ display: inline;
+}
rwlbuis 2014/08/05 19:36:23 Add an empty line here.
+param {
+ display: none;
}
input[type="checkbox" i] {
@@ -977,19 +980,19 @@ nobr {
/* states */
-:focus {
+:focus {
outline: auto 5px -webkit-focus-ring-color
}
/* Read-only text fields do not show a focus ring but do still receive focus */
-html:focus, body:focus, input[readonly]:focus {
+html:focus, body:focus, input[readonly]:focus {
outline: none
}
applet:focus, embed:focus, iframe:focus, object:focus {
outline: none
}
-
+
input:focus, textarea:focus, keygen:focus, select:focus {
outline-offset: -2px
}
@@ -1006,7 +1009,7 @@ input[type="submit" i]:focus,
input[type="file" i]:focus::-webkit-file-upload-button {
outline-offset: 0
}
-
+
a:-webkit-any-link {
color: -webkit-link;
text-decoration: underline;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698