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

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

Issue 2107233002: Reland "Implement FullScreen using top layer." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: new untested DCHECK 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: third_party/WebKit/Source/core/css/html.css
diff --git a/third_party/WebKit/Source/core/css/html.css b/third_party/WebKit/Source/core/css/html.css
index c301bbbedc18b84827c70835627fb23d3dd6496d..f51f5aa2bc237bcc7adc6569aab627040cc74c8a 100644
--- a/third_party/WebKit/Source/core/css/html.css
+++ b/third_party/WebKit/Source/core/css/html.css
@@ -968,19 +968,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
}
embed:focus, iframe:focus, object:focus {
outline: none
}
-
+
input:focus, textarea:focus, keygen:focus, select:focus {
outline-offset: -2px
}
@@ -996,7 +996,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;
@@ -1094,6 +1094,8 @@ dialog {
color: black
}
+/* TODO(foolip): In the Fullscreen spec, there's a ::backdrop block with the
+ properties shared with :fullscreen::backdrop (see fullscreen.css). */
dialog::backdrop {
position: fixed;
top: 0;
@@ -1119,4 +1121,3 @@ dialog::backdrop {
}
/* noscript is handled internally, as it depends on settings. */
-
« no previous file with comments | « third_party/WebKit/Source/core/css/fullscreen.css ('k') | third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698