Changeset 184601 in webkit
- Timestamp:
- May 19, 2015, 4:59:27 PM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r184600 r184601 1 2015-05-19 Roger Fong <roger_fong@apple.com> 2 3 Upper half of volume control should be filled, not hollow. 4 https://bugs.webkit.org/show_bug.cgi?id=145187. 5 <rdar://problem/21021970> 6 7 Reviewed by Dean Jackson. 8 9 * Modules/mediacontrols/mediaControlsApple.js: 10 (Controller.prototype.drawVolumeBackground): 11 1 12 2015-05-19 Michael Saboff <msaboff@apple.com> 2 13 -
trunk/Source/WebCore/Modules/mediacontrols/mediaControlsApple.js
r184595 r184601 1269 1269 ctx.restore(); 1270 1270 1271 // Draw volume track border.1271 // Draw portion of volume above slider thumb. 1272 1272 ctx.save(); 1273 1273 ctx.beginPath(); 1274 1274 this.addRoundedRect(ctx, scrubberPosition, 3, width - scrubberPosition, timelineHeight, timelineHeight / 2.0); 1275 this.addRoundedRect(ctx, scrubberPosition + 1, 4, width - borderSize - scrubberPosition - 1, trackHeight, trackHeight / 2.0);1276 1275 ctx.closePath(); 1277 ctx.clip( "evenodd");1276 ctx.clip(); 1278 1277 ctx.fillStyle = "rgb(30, 30, 30)"; 1279 1278 ctx.fillRect(0, 0, width, height);
Note:
See TracChangeset
for help on using the changeset viewer.