test_globalObjects_ipc.js 410 B

1234567891011121314151617181920
  1. /**
  2. * Any copyright is dedicated to the Public Domain.
  3. * http://creativecommons.org/publicdomain/zero/1.0/
  4. */
  5. var testGenerator = testSteps();
  6. function testSteps()
  7. {
  8. // Test for IDBKeyRange and indexedDB availability in ipcshell.
  9. run_test_in_child("./GlobalObjectsChild.js", function() {
  10. do_test_finished();
  11. continueToNextStep();
  12. });
  13. yield undefined;
  14. finishTest();
  15. yield undefined;
  16. }