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

Side by Side Diff: Source/core/css/mediaControls.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, 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/css/html.css ('k') | Source/core/css/quirks.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Google Inc. 3 * Copyright (C) 2009 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 background-color: transparent; 232 background-color: transparent;
233 min-width: 15px; 233 min-width: 15px;
234 border: initial; 234 border: initial;
235 color: inherit; 235 color: inherit;
236 } 236 }
237 237
238 /* FIXME these shouldn't use special pseudoShadowIds, but nicer rules. 238 /* FIXME these shouldn't use special pseudoShadowIds, but nicer rules.
239 https://code.google.com/p/chromium/issues/detail?id=112508 239 https://code.google.com/p/chromium/issues/detail?id=112508
240 https://bugs.webkit.org/show_bug.cgi?id=62218 240 https://bugs.webkit.org/show_bug.cgi?id=62218
241 */ 241 */
242 input[type="range"]::-webkit-media-slider-container { 242 input[type="range" i]::-webkit-media-slider-container {
243 display: flex; 243 display: flex;
244 align-items: center; 244 align-items: center;
245 flex-direction: row; /* This property is updated by C++ code. */ 245 flex-direction: row; /* This property is updated by C++ code. */
246 box-sizing: border-box; 246 box-sizing: border-box;
247 height: 100%; 247 height: 100%;
248 width: 100%; 248 width: 100%;
249 border: 1px solid rgba(230, 230, 230, 0.35); 249 border: 1px solid rgba(230, 230, 230, 0.35);
250 border-radius: 4px; 250 border-radius: 4px;
251 background-color: transparent; /* Background drawing is managed by C++ code to draw ranges. */ 251 background-color: transparent; /* Background drawing is managed by C++ code to draw ranges. */
252 } 252 }
253 253
254 /* The negative right margin causes the track to overflow its container. */ 254 /* The negative right margin causes the track to overflow its container. */
255 input[type="range"]::-webkit-media-slider-container > div { 255 input[type="range" i]::-webkit-media-slider-container > div {
256 margin-right: -14px; 256 margin-right: -14px;
257 } 257 }
258 258
259 input[type="range"]::-webkit-media-slider-thumb { 259 input[type="range" i]::-webkit-media-slider-thumb {
260 margin-left: -7px; 260 margin-left: -7px;
261 margin-right: -7px; 261 margin-right: -7px;
262 } 262 }
263 263
264 audio::-webkit-media-controls-fullscreen-button, video::-webkit-media-controls-f ullscreen-button { 264 audio::-webkit-media-controls-fullscreen-button, video::-webkit-media-controls-f ullscreen-button {
265 -webkit-appearance: media-enter-fullscreen-button; 265 -webkit-appearance: media-enter-fullscreen-button;
266 display: flex; 266 display: flex;
267 flex: none; 267 flex: none;
268 border: none; 268 border: none;
269 box-sizing: border-box; 269 box-sizing: border-box;
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 font-weight: bold; 378 font-weight: bold;
379 } 379 }
380 380
381 video::-webkit-media-text-track-container u { 381 video::-webkit-media-text-track-container u {
382 text-decoration: underline; 382 text-decoration: underline;
383 } 383 }
384 384
385 video::-webkit-media-text-track-container i { 385 video::-webkit-media-text-track-container i {
386 font-style: italic; 386 font-style: italic;
387 } 387 }
OLDNEW
« no previous file with comments | « Source/core/css/html.css ('k') | Source/core/css/quirks.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698