b=578509; Update our copy of the WebGL conformance test suite to svn 11955; r=vladimir

This commit is contained in:
Benoit Jacob
2010-07-16 10:30:32 -04:00
parent 3b0a690003
commit e85feaf95e
249 changed files with 19661 additions and 2746 deletions

View File

@@ -23,8 +23,22 @@ OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
if (window.layoutTestController)
// WebKit Specfic code. Add your own here.
function initNonKhronosFramework(waitUntilDone) {
if (window.layoutTestController) {
layoutTestController.overridePreference("WebKitWebGLEnabled", "1");
layoutTestController.dumpAsText();
if (waitUntilDone) {
layoutTestController.waitUntilDone();
}
}
}
function nonKhronosFrameworkNotifyIfDone() {
if (window.layoutTestController) {
layoutTestController.notifyDone();
}
}
function reportTestResultsToHarness(success, msg) {
if (window.parent.webglTestHarness) {
@@ -281,9 +295,9 @@ function shouldThrow(_a, _e)
function assertMsg(assertion, msg) {
if (assertion) {
testPassed(msg);
} else {
} else {
testFailed(msg);
}
}
}
function gc() {