summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2012-06-11 15:52:37 +0100
committerBen Murdoch <benm@google.com>2012-06-11 15:52:37 +0100
commitc3c682fc12e8ce30b42d460f323d6396e8cb1c0d (patch)
treea674b978e9f4adbe8cd5e37c944eb653eceeeaea /tests
parent963a7307e9fe7ebb13c3bf0dda1bf889d491b629 (diff)
downloadframeworks_base-c3c682fc12e8ce30b42d460f323d6396e8cb1c0d.zip
frameworks_base-c3c682fc12e8ce30b42d460f323d6396e8cb1c0d.tar.gz
frameworks_base-c3c682fc12e8ce30b42d460f323d6396e8cb1c0d.tar.bz2
Add missing </head> tag to last commit.
See Ifca486e329333b642d8195391fb1829bbf9a684c Change-Id: I2e9f0288176896d965cc25684b229f93ad46f013
Diffstat (limited to 'tests')
-rw-r--r--tests/WebViewTests/src/com/android/webviewtests/JavaBridgeChildFrameTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/WebViewTests/src/com/android/webviewtests/JavaBridgeChildFrameTest.java b/tests/WebViewTests/src/com/android/webviewtests/JavaBridgeChildFrameTest.java
index 46293c6..3f0e2b3 100644
--- a/tests/WebViewTests/src/com/android/webviewtests/JavaBridgeChildFrameTest.java
+++ b/tests/WebViewTests/src/com/android/webviewtests/JavaBridgeChildFrameTest.java
@@ -55,7 +55,7 @@ public class JavaBridgeChildFrameTest extends JavaBridgeTestBase {
// the call to testController.setStringValue in the child frame's onload handler will
// not be made.
getActivity().getWebView().loadData(
- "<html><head><body>" +
+ "<html><head></head><body>" +
"<iframe id=\"childFrame\" onload=\"testController.setStringValue('PASS');\" />" +
"</body></html>", "text/html", null);
assertEquals("PASS", mTestController.waitForStringValue());