From cf22b0c7330f9880842454f3b3e0ae44aedc51bb Mon Sep 17 00:00:00 2001 From: David Fugate Date: Sun, 25 Sep 2011 10:32:11 -0700 Subject: Removed .DS_Store file. --- test/suite/converted/.DS_Store | Bin 6148 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 test/suite/converted/.DS_Store (limited to 'test') diff --git a/test/suite/converted/.DS_Store b/test/suite/converted/.DS_Store deleted file mode 100644 index 41b8701a6..000000000 Binary files a/test/suite/converted/.DS_Store and /dev/null differ -- cgit v1.2.3 From d5bf95c6289a7a60d98321ed528b36441d68301d Mon Sep 17 00:00:00 2001 From: David Fugate Date: Sun, 25 Sep 2011 10:47:34 -0700 Subject: Made exception type checking looser: window.onerror isn't spec'ed to give us the exact error type, but we should get the '.message' property. --- test/harness/gs.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/harness/gs.js b/test/harness/gs.js index 0fad6625d..18e75f8f1 100644 --- a/test/harness/gs.js +++ b/test/harness/gs.js @@ -22,7 +22,8 @@ //An exception is expected if (testDescrip.negative !== undefined) { - testDescrip.negative = testDescrip.negative !== "" ? testDescrip.negative : "."; + //TODO - come up with a generic way of catching the error type from window.onerror + testDescrip.negative = testDescrip.negative === "NotEarlyError" ? testDescrip.negative : "."; if (window.iframeError === undefined) { //no exception was thrown testRun(testDescrip.id, testDescrip.path, testDescrip.description, testDescrip.code, 'fail', -- cgit v1.2.3