forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Back out 19 changesets (bug 1055472) for hazards and jstest failures
CLOSED TREE Backed out changeset 738e23a218c8 (bug 1055472) Backed out changeset 2c454e1ac50c (bug 1055472) Backed out changeset 40919fcffecd (bug 1055472) Backed out changeset f42360dbd545 (bug 1055472) Backed out changeset ce74f9a7b479 (bug 1055472) Backed out changeset 8b8fa139568b (bug 1055472) Backed out changeset 42d1ecbce781 (bug 1055472) Backed out changeset ccb9403a345c (bug 1055472) Backed out changeset fdd35ea9ef38 (bug 1055472) Backed out changeset 2f77faf418ce (bug 1055472) Backed out changeset 1e968e8a279a (bug 1055472) Backed out changeset d3975d948208 (bug 1055472) Backed out changeset 03d708347ebb (bug 1055472) Backed out changeset 5ec1640cdfd2 (bug 1055472) Backed out changeset 5e2b91587001 (bug 1055472) Backed out changeset fd09d5077094 (bug 1055472) Backed out changeset 2e58e0e479b7 (bug 1055472) Backed out changeset 67f0802a5c13 (bug 1055472) Backed out changeset 69d9fb855787 (bug 1055472)
- Loading branch information
Showing
50 changed files
with
266 additions
and
806 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Test that instantiating a typed array on top of a neutered buffer | ||
// doesn't trip any asserts. | ||
// | ||
// Any copyright is dedicated to the Public Domain. | ||
// http://creativecommons.org/licenses/publicdomain/ | ||
|
||
x = new ArrayBuffer(); | ||
neuter(x, "same-data"); | ||
new Uint32Array(x); | ||
gc(); | ||
|
||
x = new ArrayBuffer(); | ||
neuter(x, "change-data"); | ||
new Uint32Array(x); | ||
gc(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.