⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 202929 in webkit


Ignore:
Timestamp:
Jul 7, 2016, 1:53:41 PM (10 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rolling out r202905 and r202911.
https://bugs.webkit.org/show_bug.cgi?id=159522

This test is fails on El Capitan and Sierra WK1 (Requested by
ryanhaddad on #webkit).

Reverted changesets:

"Add a test for media control dropoff"
https://bugs.webkit.org/show_bug.cgi?id=151287
http://trac.webkit.org/changeset/202905

"Add a test for media control dropoff"
https://bugs.webkit.org/show_bug.cgi?id=151287
http://trac.webkit.org/changeset/202911

Patch by Commit Queue <commit-queue@webkit.org> on 2016-07-07

Location:
trunk
Files:
4 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r202926 r202929  
     12016-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
    1192016-07-07  Benjamin Poulain  <benjamin@webkit.org>
    220
  • trunk/Source/WebCore/ChangeLog

    r202927 r202929  
     12016-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
    1192016-07-07  Antoine Quint  <graouts@apple.com>
    220
  • trunk/Source/WebCore/Modules/mediacontrols/mediaControlsApple.js

    r202905 r202929  
    22892289                name: "Show Controls",
    22902290                object: this.showControlsButton,
    2291                 extraProperties: ["hidden"],
     2291                extraProperties: ["hidden"]
    22922292            },
    22932293            {
     
    22952295                object: this.controls.statusDisplay,
    22962296                styleValues: ["display"],
    2297                 extraProperties: ["textContent"],
     2297                extraProperties: ["textContent"]
    22982298            },
    22992299            {
    23002300                name: "Play Button",
    2301                 object: this.controls.playButton,
    2302                 extraProperties: ["hidden"],
     2301                object: this.controls.playButton
    23032302            },
    23042303            {
    23052304                name: "Rewind Button",
    2306                 object: this.controls.rewindButton,
    2307                 extraProperties: ["hidden"],
     2305                object: this.controls.rewindButton
    23082306            },
    23092307            {
    23102308                name: "Timeline Box",
    2311                 object: this.controls.timelineBox,
     2309                object: this.controls.timelineBox
    23122310            },
    23132311            {
    23142312                name: "Mute Box",
    2315                 object: this.controls.muteBox,
    2316                 extraProperties: ["hidden"],
     2313                object: this.controls.muteBox
    23172314            },
    23182315            {
    23192316                name: "Fullscreen Button",
    2320                 object: this.controls.fullscreenButton,
    2321                 extraProperties: ["hidden"],
     2317                object: this.controls.fullscreenButton
    23222318            },
    23232319            {
     
    23312327                object: this.controls.pictureInPictureButton,
    23322328                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"],
    23592329            },
    23602330            {
    23612331                name: "Track Menu",
    2362                 object: this.captionMenu,
     2332                object: this.captionMenu
    23632333            },
    23642334            {
Note: See TracChangeset for help on using the changeset viewer.