Title: [161274] trunk/LayoutTests
Revision
161274
Author
[email protected]
Date
2014-01-03 11:47:30 -0800 (Fri, 03 Jan 2014)

Log Message

Revise WebGL DataView test to match ECMAScript Draft Specification
https://bugs.webkit.org/show_bug.cgi?id=126032

Based on the ECMAScript specification, we believe that the current test is wrong. We are working to get this
fixed upstream. 

Reviewed by Dean Jackson.

* webgl/1.0.2/resources/webgl_test_files/conformance/typedarrays/data-view-test.html: Do not
prohibit using DataView as a function.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (161273 => 161274)


--- trunk/LayoutTests/ChangeLog	2014-01-03 19:32:11 UTC (rev 161273)
+++ trunk/LayoutTests/ChangeLog	2014-01-03 19:47:30 UTC (rev 161274)
@@ -1,3 +1,16 @@
+2014-01-03  Brent Fulgham  <[email protected]>
+
+        Revise WebGL DataView test to match ECMAScript Draft Specification
+        https://bugs.webkit.org/show_bug.cgi?id=126032
+
+        Based on the ECMAScript specification, we believe that the current test is wrong. We are working to get this
+        fixed upstream. 
+
+        Reviewed by Dean Jackson.
+
+        * webgl/1.0.2/resources/webgl_test_files/conformance/typedarrays/data-view-test.html: Do not
+        prohibit using DataView as a function.
+
 2014-01-03  Alexey Proskuryakov  <[email protected]>
 
         Line ending conversion should be able to handle strings with null chars

Modified: trunk/LayoutTests/webgl/1.0.2/resources/webgl_test_files/conformance/typedarrays/data-view-test.html (161273 => 161274)


--- trunk/LayoutTests/webgl/1.0.2/resources/webgl_test_files/conformance/typedarrays/data-view-test.html	2014-01-03 19:32:11 UTC (rev 161273)
+++ trunk/LayoutTests/webgl/1.0.2/resources/webgl_test_files/conformance/typedarrays/data-view-test.html	2014-01-03 19:47:30 UTC (rev 161274)
@@ -270,9 +270,9 @@
     // Use try/catch instead of calling shouldThrow to avoid different exception message being reported from different platform.
     try {
         TestEval(expr);
-        testFailed(expr + " does not throw exception");
+        testPassed(expr + " does not throw exception");
     } catch (e) {
-        testPassed(expr + " threw exception");
+        testFailed(expr + " threw exception");
     }
 
     debug("");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to