Home
last modified time | relevance | path

Searched refs:historyUrl (Results 1 – 2 of 2) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowWebView.java156 String baseUrl, String data, String mimeType, String encoding, String historyUrl) { in loadDataWithBaseURL() argument
157 if (historyUrl != null) { in loadDataWithBaseURL()
158 originalUrl = historyUrl; in loadDataWithBaseURL()
159 history.add(0, historyUrl); in loadDataWithBaseURL()
162 new LoadDataWithBaseURL(baseUrl, data, mimeType, encoding, historyUrl); in loadDataWithBaseURL()
411 public final String historyUrl; field in ShadowWebView.LoadDataWithBaseURL
414 String baseUrl, String data, String mimeType, String encoding, String historyUrl) { in LoadDataWithBaseURL() argument
419 this.historyUrl = historyUrl; in LoadDataWithBaseURL()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowWebViewTest.java71 assertThat(lastLoadData.historyUrl).isEqualTo("history/url"); in shouldRecordLastLoadDataWithBaseURL()