Changeset 202905 in webkit
- Timestamp:
- Jul 7, 2016, 7:21:29 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/media/controls/inline-elements-dropoff-order-expected.txt (added)
-
LayoutTests/media/controls/inline-elements-dropoff-order.html (added)
-
LayoutTests/platform/mac-yosemite/media/controls (added)
-
LayoutTests/platform/mac-yosemite/media/controls/inline-elements-dropoff-order-expected.txt (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/Modules/mediacontrols/mediaControlsApple.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r202904 r202905 1 2016-07-07 Eric Carlson <eric.carlson@apple.com> 2 3 Add a test for media control dropoff 4 https://bugs.webkit.org/show_bug.cgi?id=151287 5 <rdar://problem/23544666> 6 7 Reviewed by Antoine Quint. 8 9 * media/controls/inline-elements-dropoff-order-expected.txt: Added. 10 * media/controls/inline-elements-dropoff-order.html: Added. 11 * platform/mac-yosemite/media/controls: Added. 12 * platform/mac-yosemite/media/controls/inline-elements-dropoff-order-expected.txt: Added. 13 1 14 2016-07-07 Frederic Wang <fwang@igalia.com> 2 15 -
trunk/Source/WebCore/ChangeLog
r202901 r202905 1 2016-07-07 Eric Carlson <eric.carlson@apple.com> 2 3 Add a test for media control dropoff 4 https://bugs.webkit.org/show_bug.cgi?id=151287 5 <rdar://problem/23544666> 6 7 Reviewed by Antoine Quint. 8 9 Test: media/controls/inline-elements-dropoff-order.html 10 11 * Modules/mediacontrols/mediaControlsApple.js: Expose more state to testing. 12 1 13 2016-07-07 Miguel Gomez <magomez@igalia.com> 2 14 -
trunk/Source/WebCore/Modules/mediacontrols/mediaControlsApple.js
r202694 r202905 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 2301 object: this.controls.playButton, 2302 extraProperties: ["hidden"], 2302 2303 }, 2303 2304 { 2304 2305 name: "Rewind Button", 2305 object: this.controls.rewindButton 2306 object: this.controls.rewindButton, 2307 extraProperties: ["hidden"], 2306 2308 }, 2307 2309 { 2308 2310 name: "Timeline Box", 2309 object: this.controls.timelineBox 2311 object: this.controls.timelineBox, 2310 2312 }, 2311 2313 { 2312 2314 name: "Mute Box", 2313 object: this.controls.muteBox 2315 object: this.controls.muteBox, 2316 extraProperties: ["hidden"], 2314 2317 }, 2315 2318 { 2316 2319 name: "Fullscreen Button", 2317 object: this.controls.fullscreenButton 2320 object: this.controls.fullscreenButton, 2321 extraProperties: ["hidden"], 2318 2322 }, 2319 2323 { … … 2327 2331 object: this.controls.pictureInPictureButton, 2328 2332 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"], 2329 2359 }, 2330 2360 { 2331 2361 name: "Track Menu", 2332 object: this.captionMenu 2362 object: this.captionMenu, 2333 2363 }, 2334 2364 {
Note:
See TracChangeset
for help on using the changeset viewer.