We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 816b776 + ef4d25c commit 25438e2Copy full SHA for 25438e2
1 file changed
tests/DumpRenderTree/src/com/android/dumprendertree/TestShellActivity.java
@@ -916,6 +916,9 @@ public void setDefaultWebSettings(WebView webview) {
916
settings.setWorkersEnabled(false);
917
settings.setXSSAuditorEnabled(false);
918
settings.setPageCacheCapacity(0);
919
+ // this enables cpu upload path (as opposed to gpu upload path)
920
+ // and it's only meant to be a temporary workaround!
921
+ settings.setProperty("enable_cpu_upload_path", "true");
922
}
923
924
private WebView mWebView;
0 commit comments