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

Side by Side Diff: third_party/WebKit/Source/core/css/html.css

Issue 1365853003: LayoutBox::scrollRectToVisible doesn't respect overflow:hidden property. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed scrollbar hiding logic from css Created 5 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * The default style sheet used to render HTML. 2 * The default style sheet used to render HTML.
3 * 3 *
4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after
964 vertical-align: super; 964 vertical-align: super;
965 font-size: smaller 965 font-size: smaller
966 } 966 }
967 967
968 nobr { 968 nobr {
969 white-space: nowrap 969 white-space: nowrap
970 } 970 }
971 971
972 /* states */ 972 /* states */
973 973
974 :focus { 974 :focus {
skobes 2015/10/05 01:37:24 Since this file only has whitespace changes now, y
ymalik 2015/10/05 14:25:02 Done.
975 outline: auto 5px -webkit-focus-ring-color 975 outline: auto 5px -webkit-focus-ring-color
976 } 976 }
977 977
978 /* Read-only text fields do not show a focus ring but do still receive focus */ 978 /* Read-only text fields do not show a focus ring but do still receive focus */
979 html:focus, body:focus, input[readonly]:focus { 979 html:focus, body:focus, input[readonly]:focus {
980 outline: none 980 outline: none
981 } 981 }
982 982
983 embed:focus, iframe:focus, object:focus { 983 embed:focus, iframe:focus, object:focus {
984 outline: none 984 outline: none
985 } 985 }
986 986
987 input:focus, textarea:focus, keygen:focus, select:focus { 987 input:focus, textarea:focus, keygen:focus, select:focus {
988 outline-offset: -2px 988 outline-offset: -2px
989 } 989 }
990 990
991 input[type="button" i]:focus, 991 input[type="button" i]:focus,
992 input[type="checkbox" i]:focus, 992 input[type="checkbox" i]:focus,
993 input[type="file" i]:focus, 993 input[type="file" i]:focus,
994 input[type="hidden" i]:focus, 994 input[type="hidden" i]:focus,
995 input[type="image" i]:focus, 995 input[type="image" i]:focus,
996 input[type="radio" i]:focus, 996 input[type="radio" i]:focus,
997 input[type="reset" i]:focus, 997 input[type="reset" i]:focus,
998 input[type="search" i]:focus, 998 input[type="search" i]:focus,
999 input[type="submit" i]:focus, 999 input[type="submit" i]:focus,
1000 input[type="file" i]:focus::-webkit-file-upload-button { 1000 input[type="file" i]:focus::-webkit-file-upload-button {
1001 outline-offset: 0 1001 outline-offset: 0
1002 } 1002 }
1003 1003
1004 a:-webkit-any-link { 1004 a:-webkit-any-link {
1005 color: -webkit-link; 1005 color: -webkit-link;
1006 text-decoration: underline; 1006 text-decoration: underline;
1007 cursor: auto; 1007 cursor: auto;
1008 } 1008 }
1009 1009
1010 a:-webkit-any-link:active { 1010 a:-webkit-any-link:active {
1011 color: -webkit-activelink 1011 color: -webkit-activelink
1012 } 1012 }
1013 1013
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 } 1118 }
1119 1119
1120 /* Disable multicol in printing, since it's not implemented properly. See crbug. com/99358 */ 1120 /* Disable multicol in printing, since it's not implemented properly. See crbug. com/99358 */
1121 1121
1122 @media print { 1122 @media print {
1123 * { -webkit-columns: auto !important; } 1123 * { -webkit-columns: auto !important; }
1124 } 1124 }
1125 1125
1126 /* noscript is handled internally, as it depends on settings. */ 1126 /* noscript is handled internally, as it depends on settings. */
1127 1127
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698