mirror of
https://github.com/servo/servo.git
synced 2025-08-17 03:15:34 +01:00
Update web-platform-tests to revision de9a09ab7f605aed6a4b53ed96427412bab76463
This commit is contained in:
parent
f3f9303fc9
commit
73a776843f
225 changed files with 5750 additions and 2858 deletions
|
@ -31,7 +31,7 @@
|
|||
<script type="text/javascript">
|
||||
|
||||
if(getLeftPosition("target-block") !== 0) {
|
||||
var test1 = async_test("onclick event fired inside region", {timeout: testTimeout});
|
||||
var test1 = async_test("onclick event fired inside region");
|
||||
test1.step(function () {
|
||||
var testTarget = document.getElementById("target-block");
|
||||
testTarget.onclick = test1.step_func(function (evt) {
|
||||
|
@ -46,7 +46,7 @@
|
|||
mouseClick("target-block");
|
||||
});
|
||||
|
||||
var test2 = async_test("onclick event fired outside region", {timeout: testTimeout});
|
||||
var test2 = async_test("onclick event fired outside region");
|
||||
test2.step(function () {
|
||||
var testTarget = document.getElementById("outside-region");
|
||||
testTarget.onclick = test2.step_func(function (evt) {
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<script type="text/javascript">
|
||||
|
||||
if(getLeftPosition("target-block") !== 0) {
|
||||
var test1 = async_test("onmousedown event fired inside region", {timeout: testTimeout});
|
||||
var test1 = async_test("onmousedown event fired inside region");
|
||||
test1.step(function () {
|
||||
var testTarget = document.getElementById("target-block");
|
||||
testTarget.onmousedown = test1.step_func(function (evt) {
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<script type="text/javascript">
|
||||
|
||||
if(getLeftPosition("target-block") !== 0) {
|
||||
var test1 = async_test("onmousedown event fired outside region", {timeout: testTimeout});
|
||||
var test1 = async_test("onmousedown event fired outside region");
|
||||
test1.step(function () {
|
||||
var testTarget = document.getElementById("outside-region");
|
||||
testTarget.onmousedown = test1.step_func(function (evt) {
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<script type="text/javascript">
|
||||
|
||||
if(getLeftPosition("target-block") !== 0) {
|
||||
var test1 = async_test("onmouseup event fired inside region", {timeout: testTimeout});
|
||||
var test1 = async_test("onmouseup event fired inside region");
|
||||
test1.step(function () {
|
||||
var testTarget = document.getElementById("target-block");
|
||||
testTarget.onmouseup = test1.step_func(function (evt) {
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<script type="text/javascript">
|
||||
|
||||
if(getLeftPosition("target-block") !== 0) {
|
||||
var test1 = async_test("onmouseup event fired outside region", {timeout: testTimeout});
|
||||
var test1 = async_test("onmouseup event fired outside region");
|
||||
test1.step(function () {
|
||||
var testTarget = document.getElementById("outside-region");
|
||||
testTarget.onmouseup = test1.step_func(function (evt) {
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<script type="text/javascript">
|
||||
|
||||
if(getLeftPosition("target-block") !== 0) {
|
||||
var test1 = async_test("ondblclick event fired inside region", {timeout: testTimeout});
|
||||
var test1 = async_test("ondblclick event fired inside region");
|
||||
test1.step(function () {
|
||||
var testTarget = document.getElementById("target-block");
|
||||
testTarget.ondblclick = test1.step_func(function (evt) {
|
||||
|
@ -46,7 +46,7 @@
|
|||
mouseDblClick("target-block");
|
||||
});
|
||||
|
||||
var test2 = async_test("ondblclick event fired outside region", {timeout: testTimeout});
|
||||
var test2 = async_test("ondblclick event fired outside region");
|
||||
test2.step(function () {
|
||||
var testTarget = document.getElementById("outside-region");
|
||||
testTarget.ondblclick = test2.step_func( function(evt) {
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<script type="text/javascript">
|
||||
|
||||
if(getLeftPosition("target-block") !== 0) {
|
||||
var test1 = async_test("onmousemove event fired inside region", {timeout: testTimeout});
|
||||
var test1 = async_test("onmousemove event fired inside region");
|
||||
test1.step(function () {
|
||||
var testTarget = document.getElementById("target-block");
|
||||
testTarget.onmousemove = test1.step_func(function (evt) {
|
||||
|
@ -46,7 +46,7 @@
|
|||
mouseMove("target-block");
|
||||
});
|
||||
|
||||
var test2 = async_test("onmousemove event fired outside region", {timeout: testTimeout});
|
||||
var test2 = async_test("onmousemove event fired outside region");
|
||||
test2.step(function () {
|
||||
var testTarget = document.getElementById("outside-region");
|
||||
testTarget.onmousemove = test2.step_func(function (evt) {
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<script type="text/javascript">
|
||||
|
||||
if(getLeftPosition("target-block") !== 0) {
|
||||
var test1 = async_test("onmouseover event fired inside region", {timeout: testTimeout});
|
||||
var test1 = async_test("onmouseover event fired inside region");
|
||||
test1.step(function () {
|
||||
var testTarget = document.getElementById("target-block");
|
||||
testTarget.onmouseover = test1.step_func(function (evt) {
|
||||
|
@ -46,7 +46,7 @@
|
|||
mouseOver("target-block");
|
||||
});
|
||||
|
||||
var test2 = async_test("onmouseout event fired inside region", {timeout: testTimeout});
|
||||
var test2 = async_test("onmouseout event fired inside region");
|
||||
test2.step(function () {
|
||||
var testTarget = document.getElementById("target-block");
|
||||
testTarget.onmouseout = test2.step_func(function (evt) {
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<script type="text/javascript">
|
||||
|
||||
if(getLeftPosition("target-block") !== 0) {
|
||||
var test1 = async_test("onmouseover event fired outside region", {timeout: testTimeout});
|
||||
var test1 = async_test("onmouseover event fired outside region");
|
||||
test1.step(function () {
|
||||
var testTarget = document.getElementById("outside-region");
|
||||
testTarget.onmouseover = test1.step_func(function (evt) {
|
||||
|
@ -46,7 +46,7 @@
|
|||
mouseOver("outside-region");
|
||||
});
|
||||
|
||||
var test2 = async_test("onmouseout event fired outside region", {timeout: testTimeout});
|
||||
var test2 = async_test("onmouseout event fired outside region");
|
||||
test2.step(function () {
|
||||
var testTarget = document.getElementById("outside-region");
|
||||
testTarget.onmouseout = test2.step_func(function (evt) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue