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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
if (gFissionBrowser) {
addCoopTask(
"browser_485482_sample.html",
test_xpath_exp_for_strange_documents,
HTTPSROOT
);
}
addNonCoopTask(
"browser_485482_sample.html",
test_xpath_exp_for_strange_documents,
ROOT
);
addNonCoopTask(
"browser_485482_sample.html",
test_xpath_exp_for_strange_documents,
HTTPSROOT
);
addNonCoopTask(
"browser_485482_sample.html",
test_xpath_exp_for_strange_documents,
HTTPROOT
);
/**
* Bug 485482 - Make sure that we produce valid XPath expressions even for very
* weird HTML documents.
*/
async function test_xpath_exp_for_strange_documents(aURL) {
// Load a page with weird tag names.
let tab = BrowserTestUtils.addTab(gBrowser, aURL);
let browser = tab.linkedBrowser;
await promiseBrowserLoaded(browser);
// Fill in some values.
let uniqueValue = Math.random();
await setPropertyOfFormField(
browser,
"input[type=text]",
"value",
uniqueValue
);
await setPropertyOfFormField(
browser,
"input[type=checkbox]",
"checked",
true
);
// Duplicate the tab.
let tab2 = gBrowser.duplicateTab(tab);
let browser2 = tab2.linkedBrowser;
await promiseTabRestored(tab2);
// Check that we generated valid XPath expressions to restore form values.
let text = await getPropertyOfFormField(
browser2,
"input[type=text]",
"value"
);
is("" + text, "" + uniqueValue, "generated XPath expression was valid");
let checkbox = await getPropertyOfFormField(
browser2,
"input[type=checkbox]",
"checked"
);
ok(checkbox, "generated XPath expression was valid");
// Cleanup.
gBrowser.removeTab(tab2);
gBrowser.removeTab(tab);
}
|