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
|
<!DOCTYPE html>
<title>Test FencedFrames Resize Lock</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="resources/utils.js"></script>
<script src="/common/utils.js"></script>
<body>
<script>
promise_test(async t => {
const resize_lock_inner_page_is_ready_key = token();
const resize_lock_resize_is_done_key = token();
const resize_lock_report_click_location_key = token();
const resize_lock_report_click_location_key_after_resize = token();
const resize_lock_report_click_location_key_after_resize_2 = token();
const frame = attachFencedFrame(generateURL(
"resources/resize-lock-inner-input.html",
[resize_lock_inner_page_is_ready_key,
resize_lock_resize_is_done_key,
resize_lock_report_click_location_key,
resize_lock_report_click_location_key_after_resize,
resize_lock_report_click_location_key_after_resize_2]));
await nextValueFromServer(resize_lock_inner_page_is_ready_key);
// Send an event to the origin of the frame.
await new test_driver.Actions()
.setContext(window)
.addPointer("finger1", "touch")
.pointerMove(10, 10, {origin: "viewport", sourceName: "finger1"})
.pointerDown({sourceName: "finger1"})
.pointerUp({sourceName: "finger1"})
.send();
let result =
await nextValueFromServer(resize_lock_report_click_location_key);
assert_equals(result, "0,0", "fenced frame event before resize");
// The frame should be frozen at 300x150. Resize to create a 2x scale
// and a horizontal offset of 50px.
frame.width = "700";
frame.height = "300";
writeValueToServer(resize_lock_resize_is_done_key,
"outer_page_attempted_resize");
// The hit-test data is replicated in the browser and updated
// asynchronously. Wait to ensure the update has finished.
t.step_timeout(async () => {
// Now send an event to the same location. The event should be
// routed to the main frame.
let promise = new Promise((resolve, reject) => {
window.addEventListener('mousedown', (event) => {
let point = event.clientX + "," + event.clientY;
assert_equals(result, "10,10", "main frame event after resize");
});
});
await new test_driver.Actions()
.setContext(window)
.addPointer("finger1", "touch")
.pointerMove(10, 10, {origin: "viewport", sourceName: "finger1"})
.pointerDown({sourceName: "finger1"})
.pointerUp({sourceName: "finger1"})
.send();
await promise;
// Send an event to where the origin of the scaled frame should
// render.
await new test_driver.Actions()
.setContext(window)
.addPointer("finger1", "touch")
.pointerMove(60, 10, {origin: "viewport", sourceName: "finger1"})
.pointerDown({sourceName: "finger1"})
.pointerUp({sourceName: "finger1"})
.send();
result = await nextValueFromServer(resize_lock_report_click_location_key_after_resize);
assert_equals(result, "0,0", "fenced frame event before resize");
// Send an event where the bottom left of the scaled frame should
// render.
await new test_driver.Actions()
.setContext(window)
.addPointer("finger1", "touch")
.pointerMove(660, 310, {origin: "viewport", sourceName: "finger1"})
.pointerDown({sourceName: "finger1"})
.pointerUp({sourceName: "finger1"})
.send();
result = await nextValueFromServer(resize_lock_report_click_location_key_after_resize_2);
assert_equals(result, "300,150", "fenced frame event before resize");
}, 1000);
}, "Test Resize Lock");
</script>
</body>
</html>
|