content/canvas/test/webgl-conformance/fix-webgl-harness-async.patch

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 diff --git a/content/canvas/test/webgl/resources/webgl-test-harness.js b/content/canvas/test/webgl/resources/webgl-test-harness.js
     2 --- a/content/canvas/test/webgl/resources/webgl-test-harness.js
     3 +++ b/content/canvas/test/webgl/resources/webgl-test-harness.js
     4 @@ -362,18 +362,16 @@ TestHarness.prototype.addFiles_ = functi
     5    }
     6    log("total files: " + files.length);
     7    for (var ii = 0; ii < files.length; ++ii) {
     8      log("" + ii + ": " + files[ii]);
     9      this.files.push(new TestFile(files[ii]));
    10      this.reportFunc(TestHarness.reportType.ADD_PAGE, files[ii], undefined);
    11    }
    12    this.reportFunc(TestHarness.reportType.READY, undefined, undefined);
    13 -  this.nextFileIndex = files.length;
    14 -  this.lastFileIndex = files.length;
    15  }
    17  TestHarness.prototype.runTests = function(opt_start, opt_count) {
    18    var count = opt_count || this.files.length;
    19    this.nextFileIndex = opt_start || 0;
    20    this.lastFileIndex = this.nextFileIndex + count;
    21    this.startNextFile();
    22  };

mercurial