mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
6df7712da7
From 53d47a84c35781e73545eab3e665d63c742a9d20 Mon Sep 17 00:00:00 2001 --HG-- rename : browser/components/sessionstore/test/browser_346337_sample.html => browser/components/sessionstore/test/browser_formdata_xpath_sample.html
50 lines
1.4 KiB
JavaScript
50 lines
1.4 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
const URL = ROOT + "browser_456342_sample.xhtml";
|
|
|
|
/**
|
|
* Bug 456342 - Restore values from non-standard input field types.
|
|
*/
|
|
add_task(function test_restore_nonstandard_input_values() {
|
|
// Add tab with various non-standard input field types.
|
|
let tab = gBrowser.addTab(URL);
|
|
let browser = tab.linkedBrowser;
|
|
yield promiseBrowserLoaded(browser);
|
|
|
|
// Fill in form values.
|
|
let expectedValue = Math.random();
|
|
yield setFormElementValues(browser, {value: expectedValue});
|
|
|
|
// Remove tab and check collected form data.
|
|
gBrowser.removeTab(tab);
|
|
let undoItems = JSON.parse(ss.getClosedTabData(window));
|
|
let savedFormData = undoItems[0].state.formdata;
|
|
|
|
let countGood = 0, countBad = 0;
|
|
for (let id of Object.keys(savedFormData.id)) {
|
|
if (savedFormData.id[id] == expectedValue) {
|
|
countGood++;
|
|
} else {
|
|
countBad++;
|
|
}
|
|
}
|
|
|
|
for (let exp of Object.keys(savedFormData.xpath)) {
|
|
if (savedFormData.xpath[exp] == expectedValue) {
|
|
countGood++;
|
|
} else {
|
|
countBad++;
|
|
}
|
|
}
|
|
|
|
is(countGood, 4, "Saved text for non-standard input fields");
|
|
is(countBad, 0, "Didn't save text for ignored field types");
|
|
});
|
|
|
|
function setFormElementValues(browser, data) {
|
|
return sendMessage(browser, "ss-test:setFormElementValues", data);
|
|
}
|