Changeset 226541 in webkit


Ignore:
Timestamp:
Jan 8, 2018 2:35:59 PM (6 years ago)
Author:
Matt Lewis
Message:

Unreviewed, rolling out r226385.

The test introduced with this was a flaky since being added.

Reverted changeset:

"AX: when invert colors is on, double-invert certain media
elements in UserAgentStyleSheet"
https://bugs.webkit.org/show_bug.cgi?id=168447
https://trac.webkit.org/changeset/226385

Location:
trunk
Files:
4 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r226538 r226541  
     12018-01-08  Matt Lewis  <jlewis3@apple.com>
     2
     3        Unreviewed, rolling out r226385.
     4
     5        The test introduced with this was a flaky since being added.
     6
     7        Reverted changeset:
     8
     9        "AX: when invert colors is on, double-invert certain media
     10        elements in UserAgentStyleSheet"
     11        https://bugs.webkit.org/show_bug.cgi?id=168447
     12        https://trac.webkit.org/changeset/226385
     13
    1142018-01-08  Ryan Haddad  <ryanhaddad@apple.com>
    215
  • trunk/LayoutTests/TestExpectations

    r226518 r226541  
    119119
    120120# These only run on Mac and iOS WK2
    121 accessibility/smart-invert.html [ Skip ]
    122 accessibility/smart-invert-reference.html [ Skip ]
    123121fast/media/mq-inverted-colors-live-update.html [ Skip ]
    124122fast/media/mq-inverted-colors-live-update-in-subframes.html [ Skip ]
  • trunk/LayoutTests/platform/ios-wk2/TestExpectations

    r226385 r226541  
    1616editing/selection/character-granularity-rect.html [ Pass ]
    1717
    18 accessibility/smart-invert.html [ Pass ]
    19 accessibility/smart-invert-reference.html [ Pass ]
    2018fast/media/mq-inverted-colors-live-update.html [ Pass ]
    2119fast/media/mq-inverted-colors-live-update-in-subframes.html [ Pass ]
  • trunk/LayoutTests/platform/mac-wk2/TestExpectations

    r226534 r226541  
    1414fast/events/autoscroll-main-document.html [ Pass ]
    1515
    16 accessibility/smart-invert.html [ Pass ]
    17 accessibility/smart-invert-reference.html [ Pass ]
    1816fast/media/mq-inverted-colors-live-update.html [ Pass ]
    1917fast/media/mq-inverted-colors-live-update-in-subframes.html [ Pass ]
  • trunk/Source/WebCore/ChangeLog

    r226540 r226541  
     12018-01-08  Matt Lewis  <jlewis3@apple.com>
     2
     3        Unreviewed, rolling out r226385.
     4
     5        The test introduced with this was a flaky since being added.
     6
     7        Reverted changeset:
     8
     9        "AX: when invert colors is on, double-invert certain media
     10        elements in UserAgentStyleSheet"
     11        https://bugs.webkit.org/show_bug.cgi?id=168447
     12        https://trac.webkit.org/changeset/226385
     13
    1142018-01-08  Youenn Fablet  <youenn@apple.com>
    215
  • trunk/Source/WebCore/Modules/modern-media-controls/controls/media-controls.css

    r226385 r226541  
    128128    to   { opacity: 1 }
    129129}
    130 
    131 /* Default support for "Smart Invert" where all content color except media is inverted. */
    132 @media (inverted-colors) {
    133     :host { filter: invert(100%); } /* WebKit native audio and video. */
    134     picture { filter: none; } /* Don't invert the control buttons. */
    135 }
  • trunk/Source/WebCore/css/html.css

    r226385 r226541  
    12371237/* noscript is handled internally, as it depends on settings. */
    12381238
    1239 /* Default support for "Smart Invert" where all content color except media is inverted. */
    1240 @media (inverted-colors) {
    1241     video { filter: invert(100%); }  /* Only videos double-inverted for now. */
    1242 }
Note: See TracChangeset for help on using the changeset viewer.