diff options
Diffstat (limited to 'test/built-ins/decodeURIComponent/S15.1.3.2_A1.1_T1.js')
-rw-r--r-- | test/built-ins/decodeURIComponent/S15.1.3.2_A1.1_T1.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.1_T1.js b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.1_T1.js index 8f7812a52..6a072c6ba 100644 --- a/test/built-ins/decodeURIComponent/S15.1.3.2_A1.1_T1.js +++ b/test/built-ins/decodeURIComponent/S15.1.3.2_A1.1_T1.js @@ -15,7 +15,7 @@ var result = true; try { decodeURIComponent("%"); result = false; -} catch (e) { +} catch(e) { if ((e instanceof URIError) !== true) { result = false; } @@ -25,7 +25,7 @@ try { try { decodeURIComponent("%A"); result = false; -} catch (e) { +} catch(e) { if ((e instanceof URIError) !== true) { result = false; } @@ -35,7 +35,7 @@ try { try { decodeURIComponent("%1"); result = false; -} catch (e) { +} catch(e) { if ((e instanceof URIError) !== true) { result = false; } @@ -45,7 +45,7 @@ try { try { decodeURIComponent("% "); result = false; -} catch (e) { +} catch(e) { if ((e instanceof URIError) !== true) { result = false; } |