Changeset 248816 in webkit


Ignore:
Timestamp:
Aug 16, 2019 10:19:47 PM (5 years ago)
Author:
commit-queue@webkit.org
Message:

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

Causes timeouts in some WebGL tests (Requested by anttik on
#webkit).

Reverted changeset:

"Content in <iframe> should override "touch-action" set in
embedding document"
https://bugs.webkit.org/show_bug.cgi?id=200204
https://trac.webkit.org/changeset/248772

Location:
trunk
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r248815 r248816  
     12019-08-16  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r248772.
     4        https://bugs.webkit.org/show_bug.cgi?id=200853
     5
     6        Causes timeouts in some WebGL tests (Requested by anttik on
     7        #webkit).
     8
     9        Reverted changeset:
     10
     11        "Content in <iframe> should override "touch-action" set in
     12        embedding document"
     13        https://bugs.webkit.org/show_bug.cgi?id=200204
     14        https://trac.webkit.org/changeset/248772
     15
    1162019-08-16  Myles C. Maxfield  <mmaxfield@apple.com>
    217
  • trunk/Source/WebCore/ChangeLog

    r248815 r248816  
     12019-08-16  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r248772.
     4        https://bugs.webkit.org/show_bug.cgi?id=200853
     5
     6        Causes timeouts in some WebGL tests (Requested by anttik on
     7        #webkit).
     8
     9        Reverted changeset:
     10
     11        "Content in <iframe> should override "touch-action" set in
     12        embedding document"
     13        https://bugs.webkit.org/show_bug.cgi?id=200204
     14        https://trac.webkit.org/changeset/248772
     15
    1162019-08-16  Myles C. Maxfield  <mmaxfield@apple.com>
    217
  • trunk/Source/WebCore/rendering/RenderLayerBacking.cpp

    r248772 r248816  
    15891589    hasTouchActionElements = renderer().document().mayHaveElementsWithNonAutoTouchAction();
    15901590#endif
    1591     if (m_isMainFrameRenderViewLayer && !hasTouchActionElements)
     1591    if (m_owningLayer.isRenderViewLayer() && !hasTouchActionElements)
    15921592        return;
    15931593
Note: See TracChangeset for help on using the changeset viewer.