48 lines
1.2 KiB
HTML
48 lines
1.2 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
|
"http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>doh.robot Tooltip Mouse Quirks Test</title>
|
|
|
|
<style>
|
|
@import "../../../../util/doh/robot/robot.css";
|
|
</style>
|
|
|
|
<!-- required: dojo.js -->
|
|
<script type="text/javascript" src="../../../../dojo/dojo.js"
|
|
djConfig="isDebug: true"></script>
|
|
|
|
<!-- functions to help test -->
|
|
<!-- script type="text/javascript" src="../helpers.js"></script -->
|
|
|
|
<script type="text/javascript">
|
|
dojo.require("dijit.robotx");
|
|
|
|
dojo.addOnLoad(function(){
|
|
doh.robot.initRobot("../test_ajax-html.html");
|
|
|
|
doh.register("dojox.mobile.ListItem mouse tests", [
|
|
{
|
|
name: "ListItem mouse tests",
|
|
timeout: 4000,
|
|
runTest: function(){
|
|
var d = new doh.Deferred();
|
|
|
|
doh.robot.mouseMoveAt(dojo.query(".mblListItemTextBox", dijit.byId("dojox_mobile_ListItem_0").domNode)[0], 2000);
|
|
doh.robot.mouseClick({left: true}, 500);
|
|
|
|
|
|
doh.robot.sequence(d.getTestCallback(function(){
|
|
doh.is("view1.html", dijit.byId("dojox_mobile_Heading_1").get("label"));
|
|
}), 500);
|
|
return d;
|
|
}
|
|
}
|
|
]);
|
|
|
|
doh.run();
|
|
});
|
|
</script>
|
|
</head>
|
|
</html>
|