Changeset 221429 in webkit


Ignore:
Timestamp:
Aug 31, 2017 11:37:38 AM (7 years ago)
Author:
Jonathan Bedard
Message:

iOS should include both iPad and iPhone when running layout tests
https://bugs.webkit.org/show_bug.cgi?id=176172
<rdar://problem/34190219>

Reviewed by Tim Horton.

  • resources/ui-helper.js:

(window.UIHelper.isIOS):

Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r221428 r221429  
     12017-08-31  Jonathan Bedard  <jbedard@apple.com>
     2
     3        iOS should include both iPad and iPhone when running layout tests
     4        https://bugs.webkit.org/show_bug.cgi?id=176172
     5        <rdar://problem/34190219>
     6
     7        Reviewed by Tim Horton.
     8
     9        * resources/ui-helper.js:
     10        (window.UIHelper.isIOS):
     11
    1122017-08-31  Youenn Fablet  <youenn@apple.com>
    213
  • trunk/LayoutTests/resources/ui-helper.js

    r221234 r221429  
    33    static isIOS()
    44    {
    5         return navigator.userAgent.includes('iPhone');
     5        return navigator.userAgent.includes('iPhone') || navigator.userAgent.includes('iPad');
    66    }
    77
Note: See TracChangeset for help on using the changeset viewer.