Home | History | Annotate | Download | only in tests

Lines Matching refs:subframe

2289     // Now do a new test with a subframe.
2294 // Load something into the subframe.
2295 WebFrame* subframe = frame->findChildByExpression(WebString::fromUTF8("/html/body/iframe"));
2296 ASSERT_TRUE(subframe);
2297 subframe->loadHTMLString("sub<p>text", testURL);
2303 // Get the frame text where the subframe separator falls on the boundary of
2786 WebFrame* subframe = frame->findChildByExpression(WebString::fromUTF8("/html/body/iframe"));
2787 EXPECT_EQ("Some test text for testing.", selectionAsString(subframe));
2789 subframe->executeCommand(WebString::fromUTF8("Unselect"));
2790 EXPECT_EQ("", selectionAsString(subframe));
2791 subframe->selectRange(topLeft(startWebRect), bottomRightMinusOne(endWebRect));
2792 EXPECT_EQ("Some test text for testing.", selectionAsString(subframe));