Changeset 202929 in webkit
- Timestamp:
- Jul 7, 2016, 1:53:41 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 deleted
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/media/controls/inline-elements-dropoff-order-expected.txt (deleted)
-
LayoutTests/media/controls/inline-elements-dropoff-order.html (deleted)
-
LayoutTests/platform/mac-elcapitan/media/controls (deleted)
-
LayoutTests/platform/mac-yosemite/media/controls (deleted)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/Modules/mediacontrols/mediaControlsApple.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r202926 r202929 1 2016-07-07 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, rolling out r202905 and r202911. 4 https://bugs.webkit.org/show_bug.cgi?id=159522 5 6 This test is fails on El Capitan and Sierra WK1 (Requested by 7 ryanhaddad on #webkit). 8 9 Reverted changesets: 10 11 "Add a test for media control dropoff" 12 https://bugs.webkit.org/show_bug.cgi?id=151287 13 http://trac.webkit.org/changeset/202905 14 15 "Add a test for media control dropoff" 16 https://bugs.webkit.org/show_bug.cgi?id=151287 17 http://trac.webkit.org/changeset/202911 18 1 19 2016-07-07 Benjamin Poulain <benjamin@webkit.org> 2 20 -
trunk/Source/WebCore/ChangeLog
r202927 r202929 1 2016-07-07 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, rolling out r202905 and r202911. 4 https://bugs.webkit.org/show_bug.cgi?id=159522 5 6 This test is fails on El Capitan and Sierra WK1 (Requested by 7 ryanhaddad on #webkit). 8 9 Reverted changesets: 10 11 "Add a test for media control dropoff" 12 https://bugs.webkit.org/show_bug.cgi?id=151287 13 http://trac.webkit.org/changeset/202905 14 15 "Add a test for media control dropoff" 16 https://bugs.webkit.org/show_bug.cgi?id=151287 17 http://trac.webkit.org/changeset/202911 18 1 19 2016-07-07 Antoine Quint <graouts@apple.com> 2 20 -
trunk/Source/WebCore/Modules/mediacontrols/mediaControlsApple.js
r202905 r202929 2289 2289 name: "Show Controls", 2290 2290 object: this.showControlsButton, 2291 extraProperties: ["hidden"] ,2291 extraProperties: ["hidden"] 2292 2292 }, 2293 2293 { … … 2295 2295 object: this.controls.statusDisplay, 2296 2296 styleValues: ["display"], 2297 extraProperties: ["textContent"] ,2297 extraProperties: ["textContent"] 2298 2298 }, 2299 2299 { 2300 2300 name: "Play Button", 2301 object: this.controls.playButton, 2302 extraProperties: ["hidden"], 2301 object: this.controls.playButton 2303 2302 }, 2304 2303 { 2305 2304 name: "Rewind Button", 2306 object: this.controls.rewindButton, 2307 extraProperties: ["hidden"], 2305 object: this.controls.rewindButton 2308 2306 }, 2309 2307 { 2310 2308 name: "Timeline Box", 2311 object: this.controls.timelineBox ,2309 object: this.controls.timelineBox 2312 2310 }, 2313 2311 { 2314 2312 name: "Mute Box", 2315 object: this.controls.muteBox, 2316 extraProperties: ["hidden"], 2313 object: this.controls.muteBox 2317 2314 }, 2318 2315 { 2319 2316 name: "Fullscreen Button", 2320 object: this.controls.fullscreenButton, 2321 extraProperties: ["hidden"], 2317 object: this.controls.fullscreenButton 2322 2318 }, 2323 2319 { … … 2331 2327 object: this.controls.pictureInPictureButton, 2332 2328 extraProperties: ["parentElement"], 2333 extraProperties: ["hidden"],2334 },2335 {2336 name: "Caption Button",2337 object: this.controls.captionButton,2338 extraProperties: ["hidden"],2339 },2340 {2341 name: "Timeline",2342 object: this.controls.timeline,2343 extraProperties: ["hidden"],2344 },2345 {2346 name: "Current Time",2347 object: this.controls.currentTime,2348 extraProperties: ["hidden"],2349 },2350 {2351 name: "Thumbnail Track",2352 object: this.controls.thumbnailTrack,2353 extraProperties: ["hidden"],2354 },2355 {2356 name: "Time Remaining",2357 object: this.controls.remainingTime,2358 extraProperties: ["hidden"],2359 2329 }, 2360 2330 { 2361 2331 name: "Track Menu", 2362 object: this.captionMenu ,2332 object: this.captionMenu 2363 2333 }, 2364 2334 {
Note:
See TracChangeset
for help on using the changeset viewer.