Changeset 130339 in webkit
- Timestamp:
- Oct 3, 2012, 4:26:10 PM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r130338 r130339 1 2012-10-03 Ojan Vafai <ojan@chromium.org> 2 3 Replace uses of -webkit-box-sizing with box-sizing 4 https://bugs.webkit.org/show_bug.cgi?id=98312 5 6 Reviewed by Tony Chang. 7 8 No need to use the prefixed version when the unprefixed works the same. 9 No new tests since there's no change in behavior.. 10 11 * css/html.css: 12 1 13 2012-10-03 Joshua Bell <jsbell@chromium.org> 2 14 -
trunk/Source/WebCore/css/html.css
r130293 r130339 430 430 input[type="search"] { 431 431 -webkit-appearance: searchfield; 432 -webkit-box-sizing: border-box;432 box-sizing: border-box; 433 433 } 434 434 … … 712 712 border: 2px outset ButtonFace; 713 713 background-color: ButtonFace; 714 -webkit-box-sizing: border-box714 box-sizing: border-box 715 715 } 716 716 … … 726 726 -webkit-box-align: center; 727 727 -webkit-box-orient: horizontal; /* This property is updated by C++ code. */ 728 -webkit-box-sizing: border-box;728 box-sizing: border-box; 729 729 -webkit-user-modify: read-only !important; 730 730 display: -webkit-box; … … 735 735 input[type="range"]::-webkit-slider-runnable-track { 736 736 -webkit-box-flex: 1; 737 -webkit-box-sizing: border-box;737 box-sizing: border-box; 738 738 -webkit-user-modify: read-only !important; 739 739 display: block; … … 742 742 input[type="range"]::-webkit-slider-thumb, input[type="range"]::-webkit-media-slider-thumb { 743 743 -webkit-appearance: sliderthumb-horizontal; 744 -webkit-box-sizing: border-box;744 box-sizing: border-box; 745 745 -webkit-user-modify: read-only !important; 746 746 display: block; … … 769 769 input[type="checkbox"] { 770 770 -webkit-appearance: checkbox; 771 -webkit-box-sizing: border-box;771 box-sizing: border-box; 772 772 } 773 773 774 774 input[type="radio"] { 775 775 -webkit-appearance: radio; 776 -webkit-box-sizing: border-box;776 box-sizing: border-box; 777 777 } 778 778 … … 788 788 display:-webkit-box; 789 789 padding: 4px 2px; 790 -webkit-box-sizing: border-box;790 box-sizing: border-box; 791 791 -webkit-user-modify: read-only !important; 792 792 width: 100%; … … 837 837 select { 838 838 -webkit-appearance: menulist; 839 -webkit-box-sizing: border-box;839 box-sizing: border-box; 840 840 -webkit-box-align: center; 841 841 border: 1px solid; … … 952 952 meter { 953 953 -webkit-appearance: meter; 954 -webkit-box-sizing: border-box;954 box-sizing: border-box; 955 955 display: inline-block; 956 956 height: 1em; … … 961 961 meter::-webkit-meter-inner-element { 962 962 -webkit-appearance: inherit; 963 -webkit-box-sizing: inherit;963 box-sizing: inherit; 964 964 -webkit-user-modify: read-only !important; 965 965 height: 100%; … … 972 972 width: 100%; 973 973 -webkit-user-modify: read-only !important; 974 -webkit-box-sizing: border-box;974 box-sizing: border-box; 975 975 } 976 976 … … 979 979 height: 100%; 980 980 -webkit-user-modify: read-only !important; 981 -webkit-box-sizing: border-box;981 box-sizing: border-box; 982 982 } 983 983 … … 986 986 height: 100%; 987 987 -webkit-user-modify: read-only !important; 988 -webkit-box-sizing: border-box;988 box-sizing: border-box; 989 989 } 990 990 … … 993 993 height: 100%; 994 994 -webkit-user-modify: read-only !important; 995 -webkit-box-sizing: border-box;995 box-sizing: border-box; 996 996 } 997 997 #endif … … 1002 1002 progress { 1003 1003 -webkit-appearance: progress-bar; 1004 -webkit-box-sizing: border-box;1004 box-sizing: border-box; 1005 1005 display: inline-block; 1006 1006 height: 1em; … … 1011 1011 progress::-webkit-progress-inner-element { 1012 1012 -webkit-appearance: inherit; 1013 -webkit-box-sizing: inherit;1013 box-sizing: inherit; 1014 1014 -webkit-user-modify: read-only; 1015 1015 height: 100%; … … 1022 1022 width: 100%; 1023 1023 -webkit-user-modify: read-only !important; 1024 -webkit-box-sizing: border-box;1024 box-sizing: border-box; 1025 1025 } 1026 1026 … … 1030 1030 width: 50%; /* should be removed later */ 1031 1031 -webkit-user-modify: read-only !important; 1032 -webkit-box-sizing: border-box;1032 box-sizing: border-box; 1033 1033 } 1034 1034 #endif -
trunk/Source/WebCore/css/mediaControlsChromium.css
r127831 r130339 161 161 -webkit-box-align: center; 162 162 -webkit-box-orient: horizontal; /* This property is updated by C++ code. */ 163 -webkit-box-sizing: border-box;163 box-sizing: border-box; 164 164 height: 100%; 165 165 width: 100%; … … 172 172 display: block; 173 173 -webkit-appearance: sliderthumb-horizontal; 174 -webkit-box-sizing: border-box;174 box-sizing: border-box; 175 175 position: relative; 176 176 bottom: 1px; -
trunk/Source/WebCore/css/mediaControlsChromiumAndroid.css
r123969 r130339 176 176 -webkit-box-align: center; 177 177 -webkit-box-orient: horizontal; 178 -webkit-box-sizing: border-box;178 box-sizing: border-box; 179 179 height: 100%; 180 180 width: 100%; … … 187 187 display: block; 188 188 -webkit-appearance: sliderthumb-horizontal; 189 -webkit-box-sizing: border-box;189 box-sizing: border-box; 190 190 position: relative; 191 191 bottom: 1px;
Note:
See TracChangeset
for help on using the changeset viewer.