blob: ee36846c912e31db3f92c1362de522e4c69fece0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="../js/resources/js-test-pre.js"></script>
<script src="resources/helper.js"></script>
<style>
#article {
-webkit-flow-into: article;
border: 2px solid black;
}
#region_1, #region_2{
-webkit-flow-from: no_article;
overflow: hidden;
display: inline-block;
vertical-align: top;
margin: 10px;
}
.block {
display: block;
}
#region_1, #region_2 { height:110px; width:200px; border: 1px solid red;}
</style>
</head>
<body>
<div id="article">
<div>
<div id="content" style="height: 200px; background-color: green;"></div>
</div>
</div>
<div id="region_1"></div>
<div id="region_2"></div>
<script>
description("Tests the the NamedFlow object behavior as an EventTarget");
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
window.jsTestIsAsync = true;
function flowContent(flowName) {
var r = document.getElementById("region_1");
r.style.webkitFlowFrom = flowName;
r = document.getElementById("region_2");
r.style.webkitFlowFrom = flowName;
}
function makeFlowNull() {
shouldBeNonNull('getFlowByName("article")');
var el = document.getElementById("region_1");
el.style.webkitFlowFrom = "no_article";
el = document.getElementById("region_2");
el.style.webkitFlowFrom = "no_article";
el = document.getElementById("article");
el.style.webkitFlowInto = "no_article";
}
var recreated = false;
function makeFlowCreated() {
shouldBeNull('getFlowByName("article")');
gc();
var el = document.getElementById("region_1");
el.style.webkitFlowFrom = "article";
el = document.getElementById("region_2");
el.style.webkitFlowFrom = "article";
el = document.getElementById("article");
el.style.webkitFlowInto = "article";
recreated = true;
}
var updatedCount = 0;
function finishTest() {
shouldBe("updatedCount", "2");
finishJSTest();
}
function flowThreadUpdated(event) {
++updatedCount;
shouldBeEqualToString("event.target.name", "article");
if (updatedCount == 2) {
shouldBeTrue("recreated");
event.target.removeEventListener("webkitregionoversetchange", flowThreadUpdated);
makeFlowNull();
setTimeout("finishTest()", 200);
return;
}
makeFlowNull();
shouldBeFalse("recreated");
// Set a timeout so the event reference to the target is discarded
setTimeout(makeFlowCreated, 10);
}
function startTest() {
var flowThread = getFlowByName("article");
flowThread.addEventListener("webkitregionoversetchange", flowThreadUpdated);
debug("Flow content");
flowContent("article");
}
window.addEventListener("load", startTest);
</script>
</body>
</html>
|