Bug 1390020 - Set the dom.select_events.textcontrols.enabled pref in test_selectevents.html; r=mystor

This commit is contained in:
Ehsan Akhgari 2017-08-14 17:35:32 -04:00
parent 58db586648
commit 623069c803

View File

@ -13,7 +13,10 @@
<script>
add_task(async function() {
// Push the correct preferences for the test
await SpecialPowers.pushPrefEnv({'set': [['dom.select_events.enabled', true]]});
await SpecialPowers.pushPrefEnv({'set': [
['dom.select_events.enabled', true],
['dom.select_events.textcontrols.enabled', true],
]});
// Start the actual test
await new Promise((done) => {