Bug 133779

Summary: [iOS WK2] Give WebKitTestRunner a viewport configuration with initial scale=1 for testing
Product: WebKit Reporter: Simon Fraser (smfr) <simon.fraser>
Component: New BugsAssignee: Simon Fraser (smfr) <simon.fraser>
Status: RESOLVED FIXED    
Severity: Normal CC: andersca, benjamin, ddkilzer, dfarler, simon.fraser
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 133785    
Attachments:
Description Flags
Patch benjamin: review+

Description Simon Fraser (smfr) 2014-06-11 17:41:24 PDT
[iOS WK2] Give WebKitTestRunner a viewport configuration with initial scale=1 for testing
Comment 1 Simon Fraser (smfr) 2014-06-11 17:45:28 PDT
Created attachment 232925 [details]
Patch
Comment 2 Benjamin Poulain 2014-06-11 17:49:56 PDT
Comment on attachment 232925 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=232925&action=review

> Source/WebKit2/UIProcess/API/ios/WKViewIOS.mm:247
> +    WebPageProxy *webPageProxy = [_contentView page];

* on the wrong side.

> Source/WebKit2/UIProcess/API/ios/WKViewIOS.mm:248
> +    webPageProxy->setViewportConfigurationMinimumLayoutSize(WebCore::FloatSize(bounds.size));

You should also send setMaximumUnobscuredSize() so that we can use viewport units.
You could set setViewportConfigurationMinimumLayoutSizeForMinimalUI() but there is no test for it.

They should all take the same size in this case.

> Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm:2200
> +    if (m_useTestingViewportConfiguration) {
> +        m_viewportConfiguration.setDefaultConfiguration(ViewportConfiguration::testingParameters());
> +        return;
> +    }

Shouldn't this be above the case with !frame?
Comment 3 Simon Fraser (smfr) 2014-06-11 19:04:36 PDT
https://trac.webkit.org/r169869