2010-08-26 22:46:17 -07:00
|
|
|
function check(aElementName, aBarred, aType) {
|
|
|
|
let doc = gBrowser.contentDocument;
|
|
|
|
let tooltip = document.getElementById("aHTMLTooltip");
|
|
|
|
let content = doc.getElementById('content');
|
|
|
|
|
|
|
|
let e = doc.createElement(aElementName);
|
|
|
|
content.appendChild(e);
|
|
|
|
|
|
|
|
if (aType) {
|
|
|
|
e.type = aType;
|
|
|
|
}
|
|
|
|
|
|
|
|
ok(!FillInHTMLTooltip(e),
|
|
|
|
"No tooltip should be shown when the element is valid");
|
|
|
|
|
|
|
|
e.setCustomValidity('foo');
|
|
|
|
if (aBarred) {
|
|
|
|
ok(!FillInHTMLTooltip(e),
|
|
|
|
"No tooltip should be shown when the element is barred from constraint validation");
|
|
|
|
} else {
|
|
|
|
ok(FillInHTMLTooltip(e),
|
|
|
|
"A tooltip should be shown when the element isn't valid");
|
|
|
|
}
|
|
|
|
|
|
|
|
content.removeChild(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
function todo_check(aElementName, aBarred) {
|
|
|
|
let doc = gBrowser.contentDocument;
|
|
|
|
let tooltip = document.getElementById("aHTMLTooltip");
|
|
|
|
let content = doc.getElementById('content');
|
|
|
|
|
|
|
|
let e = doc.createElement(aElementName);
|
|
|
|
content.appendChild(e);
|
|
|
|
|
|
|
|
let cought = false;
|
|
|
|
try {
|
|
|
|
e.setCustomValidity('foo');
|
|
|
|
} catch (e) {
|
|
|
|
cought = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
todo(!cought, "setCustomValidity should exist for " + aElementName);
|
|
|
|
|
|
|
|
content.removeChild(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
function test () {
|
|
|
|
waitForExplicitFinish();
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
|
|
gBrowser.selectedBrowser.addEventListener("load", function () {
|
|
|
|
gBrowser.selectedBrowser.removeEventListener("load", arguments.callee, true);
|
|
|
|
|
|
|
|
let testData = [
|
|
|
|
/* element name, barred, type */
|
|
|
|
[ 'input', false, null],
|
|
|
|
[ 'textarea', false, null],
|
|
|
|
[ 'button', true, 'button'],
|
|
|
|
[ 'button', false, 'submit' ],
|
|
|
|
[ 'select', false, null],
|
|
|
|
[ 'output', true, null],
|
|
|
|
[ 'fieldset', true, null],
|
2010-08-27 19:00:25 -07:00
|
|
|
[ 'object', 'false' ],
|
2010-08-26 22:46:17 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
for each (let data in testData) {
|
|
|
|
check(data[0], data[1], data[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
let todo_testData = [
|
|
|
|
[ 'keygen', 'false' ],
|
|
|
|
];
|
|
|
|
|
|
|
|
for each(let data in todo_testData) {
|
|
|
|
todo_check(data[0], data[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
gBrowser.removeCurrentTab();
|
|
|
|
finish();
|
|
|
|
}, true);
|
|
|
|
|
|
|
|
content.location =
|
|
|
|
"data:text/html,<!DOCTYPE html><html><body><div id='content'></div></body></html>";
|
|
|
|
}
|
|
|
|
|