JavaScript Test - change native function to decodeURI since print is not native in the browser version

git-svn-id: svn://10.0.0.236/trunk@227342 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bclary%bclary.com 2007-05-31 19:00:11 +00:00
parent e9a078169d
commit b560407498

View File

@ -54,8 +54,8 @@ function test()
printBugNumber(BUGNUMBER);
printStatus (summary);
expect = '( { get x print ( ) { [ native code ] } } )';
actual = uneval({x getter: print});
expect = '( { get x decodeURI ( ) { [ native code ] } } )';
actual = uneval({x getter: decodeURI});
compareSource(expect, actual, summary);