LayoutTests/ChangeLog

 12012-02-22 Yanbin Zhang <yanbin.zhang@intel.com>
 2
 3 [GTK] fast/mediastream/peerconnection-argument-types.html fails
 4 https://bugs.webkit.org/show_bug.cgi?id=79096
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 * fast/mediastream/peerconnection-argument-types-expected.txt:
 9 * fast/mediastream/script-tests/argument-types.js:
 10
1112012-02-21 Max Vujovic <mvujovic@adobe.com>
212
313 getCTM() on SVG root element with borders, paddings, and viewbox returns incorrect values
108446

LayoutTests/fast/mediastream/peerconnection-argument-types-expected.txt

@@PASS new webkitPeerConnection("STUN NONE
2323PASS new webkitPeerConnection("STUNS NONE") threw exception TypeError: Not enough arguments.
2424PASS new webkitPeerConnection("undefined") threw exception TypeError: Not enough arguments.
2525PASS new webkitPeerConnection("null") threw exception TypeError: Not enough arguments.
26 PASS new webkitPeerConnection({})) threw exception SyntaxError: Unexpected token ).
27 PASS new webkitPeerConnection(42)) threw exception SyntaxError: Unexpected token ).
 26PASS new webkitPeerConnection({}) threw exception TypeError: Not enough arguments.
 27PASS new webkitPeerConnection(42) threw exception TypeError: Not enough arguments.
2828PASS new webkitPeerConnection(Infinity) threw exception TypeError: Not enough arguments.
2929PASS new webkitPeerConnection(-Infinity) threw exception TypeError: Not enough arguments.
3030PASS new webkitPeerConnection(emptyFunction) threw exception TypeError: Not enough arguments.
108446

LayoutTests/fast/mediastream/script-tests/argument-types.js

@@test('new webkitPeerConnection("STUN NON
5555test('new webkitPeerConnection("STUNS NONE")', true, 'TypeError: Not enough arguments');
5656test('new webkitPeerConnection("undefined")', true, 'TypeError: Not enough arguments');
5757test('new webkitPeerConnection("null")', true, 'TypeError: Not enough arguments');
58 test('new webkitPeerConnection({}))', true, 'SyntaxError: Unexpected token )');
59 test('new webkitPeerConnection(42))', true, 'SyntaxError: Unexpected token )');
 58test('new webkitPeerConnection({})', true, 'TypeError: Not enough arguments');
 59test('new webkitPeerConnection(42)', true, 'TypeError: Not enough arguments');
6060test('new webkitPeerConnection(Infinity)', true, 'TypeError: Not enough arguments');
6161test('new webkitPeerConnection(-Infinity)', true, 'TypeError: Not enough arguments');
6262test('new webkitPeerConnection(emptyFunction)', true, 'TypeError: Not enough arguments');
108446