Add missing </head> tag to last commit.

See Ifca486e329333b642d8195391fb1829bbf9a684c

Change-Id: I2e9f0288176896d965cc25684b229f93ad46f013
This commit is contained in:
Ben Murdoch
2012-06-11 15:52:37 +01:00
parent 963a7307e9
commit c3c682fc12

View File

@@ -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());