WebKit Bugzilla
Attachment 359496 Details for
Bug 193537
: webkitpy: Add iPhone and iPad ports
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-193537-20190118085154.patch (text/plain), 1.59 KB, created by
Jonathan Bedard
on 2019-01-18 08:51:55 PST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Jonathan Bedard
Created:
2019-01-18 08:51:55 PST
Size:
1.59 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 240150) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,16 @@ >+2019-01-18 Jonathan Bedard <jbedard@apple.com> >+ >+ webkitpy: Add iPhone and iPad ports >+ https://bugs.webkit.org/show_bug.cgi?id=193537 >+ <rdar://problem/47353390> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * Scripts/webkitpy/port/ios_simulator.py: >+ (IOSSimulatorPort.stderr_patterns_to_strip): >+ (IPadSimulatorPort): >+ (iPhoneSimulatorPort): >+ > 2019-01-18 Jonathan Bedard <jbedard@apple.com> > > webkitpy: Implement device type specific expected results (Part 2) >Index: Tools/Scripts/webkitpy/port/ios_simulator.py >=================================================================== >--- Tools/Scripts/webkitpy/port/ios_simulator.py (revision 240150) >+++ Tools/Scripts/webkitpy/port/ios_simulator.py (working copy) >@@ -109,3 +109,20 @@ class IOSSimulatorPort(IOSPort): > > def stderr_patterns_to_strip(self): > return [] >+ >+ >+class IPadSimulatorPort(IOSSimulatorPort): >+ port_name = "ipad-simulator" >+ >+ DEVICE_TYPE = DeviceType(hardware_family='iPad') >+ DEFAULT_DEVICE_TYPES = [DeviceType(hardware_family='iPad', hardware_type='(5th generation)')] >+ >+ >+class iPhoneSimulatorPort(IOSSimulatorPort): >+ port_name = "iphone-simulator" >+ >+ DEVICE_TYPE = DeviceType(hardware_family='iPhone') >+ DEFAULT_DEVICE_TYPES = [ >+ DeviceType(hardware_family='iPhone', hardware_type='SE'), >+ DeviceType(hardware_family='iPhone', hardware_type='7'), >+ ]
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 193537
:
359496
|
359511