Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Unified Diff: client/site_tests/graphics_WebGLConformance/r11002.patch

Issue 6849012: update WebGL to initial release 1.0.0 (Closed) Base URL: ssh://gitrw.chromium.org:9222/autotest.git@master
Patch Set: move tarball to production url Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/site_tests/graphics_WebGLConformance/r11002.patch
diff --git a/client/site_tests/graphics_WebGLConformance/r11002.patch b/client/site_tests/graphics_WebGLConformance/r11002.patch
deleted file mode 100644
index 6185ceed66dd678f92cf1f74f906cc5fdc4c79e6..0000000000000000000000000000000000000000
--- a/client/site_tests/graphics_WebGLConformance/r11002.patch
+++ /dev/null
@@ -1,48 +0,0 @@
---- WebGL/webgl-conformance-tests.html 2010-04-21 11:03:56.000000000 -0700
-+++ src/webgl-conformance-tests.html 2010-04-21 15:18:24.000000000 -0700
-@@ -193,6 +193,25 @@
- this.currentPage = null;
- }
- };
-+
-+ Reporter.prototype.postFinalResults = function() {
-+ var xhr = new XMLHttpRequest();
-+ xhr.open('POST', 'http://localhost:8000/WebGL/results', false);
-+ xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
-+ xhr.onreadystatechange = function() {
-+ if (xhr.readyState != 4) { return; }
-+ }
-+ var totalPages = 0;
-+ var totalSuccessfulPages = 0;
-+ for (var url in this.pagesByURL) {
-+ ++totalPages;
-+ var page = this.pagesByURL[url];
-+ if (page.totalTests == page.totalSuccessful)
-+ ++totalSuccessfulPages;
-+ }
-+ cmd = "total=" + totalPages + "&pass=" + totalSuccessfulPages;
-+ xhr.send(cmd);
-+ }
-
- Reporter.prototype.displayFinalResults = function() {
- var totalTests = 0;
-@@ -210,7 +229,8 @@
- }
- var msg = ' (' + totalSuccessful + ' of ' +
- totalTests + ' passed' + timeout + ')';
-- this.fullResultsNode.textContent = msg;
-+ this.fullResultsNode.textContent = msg;
-+ this.postFinalResults();
- };
-
- Reporter.prototype.reportFunc = function(type, msg, success) {
-@@ -253,7 +273,8 @@
- button.disabled = true;
- var elem = document.getElementById("nowebgl");
- elem.style.display = "";
-- }
-+ }
-+ testHarness.runTests();
- }
- </script>
- </head>

Powered by Google App Engine
This is Rietveld 408576698