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

Changeset 202905 in webkit


Ignore:
Timestamp:
Jul 7, 2016, 7:21:29 AM (10 years ago)
Author:
eric.carlson@apple.com
Message:

Add a test for media control dropoff
https://bugs.webkit.org/show_bug.cgi?id=151287
<rdar://problem/23544666>

Reviewed by Antoine Quint.

Source/WebCore:

Test: media/controls/inline-elements-dropoff-order.html

  • Modules/mediacontrols/mediaControlsApple.js: Expose more state to testing.

LayoutTests:

  • media/controls/inline-elements-dropoff-order-expected.txt: Added.
  • media/controls/inline-elements-dropoff-order.html: Added.
  • platform/mac-yosemite/media/controls: Added.
  • platform/mac-yosemite/media/controls/inline-elements-dropoff-order-expected.txt: Added.
Location:
trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r202904 r202905  
     12016-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
    1142016-07-07  Frederic Wang  <fwang@igalia.com>
    215
  • trunk/Source/WebCore/ChangeLog

    r202901 r202905  
     12016-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
    1132016-07-07  Miguel Gomez  <magomez@igalia.com>
    214
  • trunk/Source/WebCore/Modules/mediacontrols/mediaControlsApple.js

    r202694 r202905  
    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
     2301                object: this.controls.playButton,
     2302                extraProperties: ["hidden"],
    23022303            },
    23032304            {
    23042305                name: "Rewind Button",
    2305                 object: this.controls.rewindButton
     2306                object: this.controls.rewindButton,
     2307                extraProperties: ["hidden"],
    23062308            },
    23072309            {
    23082310                name: "Timeline Box",
    2309                 object: this.controls.timelineBox
     2311                object: this.controls.timelineBox,
    23102312            },
    23112313            {
    23122314                name: "Mute Box",
    2313                 object: this.controls.muteBox
     2315                object: this.controls.muteBox,
     2316                extraProperties: ["hidden"],
    23142317            },
    23152318            {
    23162319                name: "Fullscreen Button",
    2317                 object: this.controls.fullscreenButton
     2320                object: this.controls.fullscreenButton,
     2321                extraProperties: ["hidden"],
    23182322            },
    23192323            {
     
    23272331                object: this.controls.pictureInPictureButton,
    23282332                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"],
    23292359            },
    23302360            {
    23312361                name: "Track Menu",
    2332                 object: this.captionMenu
     2362                object: this.captionMenu,
    23332363            },
    23342364            {
Note: See TracChangeset for help on using the changeset viewer.