tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

regress-367589.js (1270B)


      1 // |reftest| skip-if(xulRuntime.shell||(winWidget&&isDebugBuild)) slow
      2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 //-----------------------------------------------------------------------------
      8 var BUGNUMBER = 367589;
      9 var summary = 'Do not assert !SPROP_HAS_STUB_SETTER(sprop) || (sprop->attrs & JSPROP_GETTER)';
     10 var actual = 'No Crash';
     11 var expect = 'No Crash';
     12 
     13 
     14 //-----------------------------------------------------------------------------
     15 test();
     16 //-----------------------------------------------------------------------------
     17 
     18 function test()
     19 {
     20  printBugNumber(BUGNUMBER);
     21  printStatus (summary);
     22 
     23  gDelayTestDriverEnd = true;
     24  document.write('<button id="button" onclick="document.getElementsByTagName(\'button\')[0] = \'wtf\';">Crash</button>');
     25  window.addEventListener('load', crash, false);
     26 }
     27 
     28 function crash()
     29 {
     30  document.getElementById('button').click();
     31  setTimeout(checkCrash, 0);
     32 }
     33 
     34 function checkCrash()
     35 {
     36  gDelayTestDriverEnd = false;
     37  reportCompare(expect, actual, summary);
     38  jsTestDriverEnd();
     39 }