| Index: webkit/tools/test_shell/webview_host_mac.mm
|
| diff --git a/webkit/tools/test_shell/webview_host_mac.mm b/webkit/tools/test_shell/webview_host_mac.mm
|
| index 98ce43f0afbf8d827c48f272f5fe5c424d467999..cabe00e8e921e9151c91a64dd9849a16166f7d7f 100644
|
| --- a/webkit/tools/test_shell/webview_host_mac.mm
|
| +++ b/webkit/tools/test_shell/webview_host_mac.mm
|
| @@ -9,6 +9,7 @@
|
|
|
| #include "skia/ext/platform_canvas.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h"
|
| +#include "third_party/WebKit/Source/WebKit/chromium/public/WebSettings.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
|
| #include "ui/gfx/rect.h"
|
| #include "ui/gfx/size.h"
|
| @@ -42,6 +43,7 @@ WebViewHost* WebViewHost::Create(NSView* parent_view,
|
| host->webwidget_ = WebView::create(delegate);
|
| host->webview()->setDevToolsAgentClient(dev_tools_client);
|
| prefs.Apply(host->webview());
|
| + host->webview()->settings()->setExperimentalCSSGridLayoutEnabled(true);
|
| host->webview()->initializeMainFrame(delegate);
|
| host->webwidget_->resize(WebSize(NSWidth(content_rect),
|
| NSHeight(content_rect)));
|
|
|