Changeset 195626 in webkit


Ignore:
Timestamp:
Jan 26, 2016 3:14:55 PM (8 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rolling out r195610.
https://bugs.webkit.org/show_bug.cgi?id=153513

The test added with this change is timing out on almost every
run (Requested by ryanhaddad on #webkit).

Reverted changeset:

"Calling video.controls=true during a scrub operation cancels
scrub."
https://bugs.webkit.org/show_bug.cgi?id=153494
http://trac.webkit.org/changeset/195610

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

Location:
trunk
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r195625 r195626  
     12016-01-26  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r195610.
     4        https://bugs.webkit.org/show_bug.cgi?id=153513
     5
     6        The test added with this change is timing out on almost every
     7        run (Requested by ryanhaddad on #webkit).
     8
     9        Reverted changeset:
     10
     11        "Calling video.controls=true during a scrub operation cancels
     12        scrub."
     13        https://bugs.webkit.org/show_bug.cgi?id=153494
     14        http://trac.webkit.org/changeset/195610
     15
    1162016-01-26  Brady Eidson  <beidson@apple.com>
    217
  • trunk/Source/WebCore/ChangeLog

    r195625 r195626  
     12016-01-26  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r195610.
     4        https://bugs.webkit.org/show_bug.cgi?id=153513
     5
     6        The test added with this change is timing out on almost every
     7        run (Requested by ryanhaddad on #webkit).
     8
     9        Reverted changeset:
     10
     11        "Calling video.controls=true during a scrub operation cancels
     12        scrub."
     13        https://bugs.webkit.org/show_bug.cgi?id=153494
     14        http://trac.webkit.org/changeset/195610
     15
    1162016-01-26  Brady Eidson  <beidson@apple.com>
    217
  • trunk/Source/WebCore/Modules/mediacontrols/mediaControlsApple.js

    r195610 r195626  
    10881088            this.updateBase();
    10891089
    1090             if (this.shouldHaveControls() && !this.hasControls())
     1090            if (this.shouldHaveControls())
    10911091                this.addControls();
    1092             else if (!this.shouldHaveControls() && this.hasControls())
     1092            else
    10931093                this.removeControls();
    10941094        } catch(e) {
     
    15411541        this.base.appendChild(this.controls.panel);
    15421542        this.updateControls();
    1543     },
    1544 
    1545     hasControls: function()
    1546     {
    1547         return this.controls.panel.parentElement;
    15481543    },
    15491544
Note: See TracChangeset for help on using the changeset viewer.