Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Side by Side Diff: LayoutTests/fast/dom/Window/get-set-properties-expected.txt

Issue 22687002: Treat non-callable input as null for EventHandler attributes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix nit Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 This page tests getting and setting window properties and functions. 1 This page tests getting and setting window properties and functions.
2 2
3 3
4 ----- tests for getting/setting read-write properties ----- 4 ----- tests for getting/setting read-write properties -----
5 5
6 PASS: canGet('Attr') should be 'true' and is. 6 PASS: canGet('Attr') should be 'true' and is.
7 PASS: canSet('Attr') should be 'true' and is. 7 PASS: canSet('Attr') should be 'true' and is.
8 PASS: canGet('CDATASection') should be 'true' and is. 8 PASS: canGet('CDATASection') should be 'true' and is.
9 PASS: canSet('CDATASection') should be 'true' and is. 9 PASS: canSet('CDATASection') should be 'true' and is.
10 PASS: canGet('CSSPrimitiveValue') should be 'true' and is. 10 PASS: canGet('CSSPrimitiveValue') should be 'true' and is.
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 PASS: canGet('getComputedStyle') should be 'true' and is. 299 PASS: canGet('getComputedStyle') should be 'true' and is.
300 PASS: canSet('getComputedStyle') should be 'true' and is. 300 PASS: canSet('getComputedStyle') should be 'true' and is.
301 PASS: canGet('getMatchedCSSRules') should be 'true' and is. 301 PASS: canGet('getMatchedCSSRules') should be 'true' and is.
302 PASS: canSet('getMatchedCSSRules') should be 'true' and is. 302 PASS: canSet('getMatchedCSSRules') should be 'true' and is.
303 PASS: canGet('getSelection') should be 'true' and is. 303 PASS: canGet('getSelection') should be 'true' and is.
304 PASS: canSet('getSelection') should be 'true' and is. 304 PASS: canSet('getSelection') should be 'true' and is.
305 PASS: canGet('moveBy') should be 'true' and is. 305 PASS: canGet('moveBy') should be 'true' and is.
306 PASS: canSet('moveBy') should be 'true' and is. 306 PASS: canSet('moveBy') should be 'true' and is.
307 PASS: canGet('moveTo') should be 'true' and is. 307 PASS: canGet('moveTo') should be 'true' and is.
308 PASS: canSet('moveTo') should be 'true' and is. 308 PASS: canSet('moveTo') should be 'true' and is.
309 PASS: canGet('onabort') should be 'true' and is.
310 PASS: canSet('onabort') should be 'true' and is.
311 PASS: canGet('onbeforeunload') should be 'true' and is.
312 PASS: canSet('onbeforeunload') should be 'true' and is.
313 PASS: canGet('onblur') should be 'true' and is.
314 PASS: canSet('onblur') should be 'true' and is.
315 PASS: canGet('onchange') should be 'true' and is.
316 PASS: canSet('onchange') should be 'true' and is.
317 PASS: canGet('onclick') should be 'true' and is.
318 PASS: canSet('onclick') should be 'true' and is.
319 PASS: canGet('ondblclick') should be 'true' and is.
320 PASS: canSet('ondblclick') should be 'true' and is.
321 PASS: canGet('onerror') should be 'true' and is.
322 PASS: canSet('onerror') should be 'true' and is.
323 PASS: canGet('onfocus') should be 'true' and is.
324 PASS: canSet('onfocus') should be 'true' and is.
325 PASS: canGet('onkeydown') should be 'true' and is.
326 PASS: canSet('onkeydown') should be 'true' and is.
327 PASS: canGet('onkeypress') should be 'true' and is.
328 PASS: canSet('onkeypress') should be 'true' and is.
329 PASS: canGet('onkeyup') should be 'true' and is.
330 PASS: canSet('onkeyup') should be 'true' and is.
331 PASS: canGet('onload') should be 'true' and is.
332 PASS: canSet('onload') should be 'true' and is.
333 PASS: canGet('onmousedown') should be 'true' and is.
334 PASS: canSet('onmousedown') should be 'true' and is.
335 PASS: canGet('onmousemove') should be 'true' and is.
336 PASS: canSet('onmousemove') should be 'true' and is.
337 PASS: canGet('onmouseout') should be 'true' and is.
338 PASS: canSet('onmouseout') should be 'true' and is.
339 PASS: canGet('onmouseover') should be 'true' and is.
340 PASS: canSet('onmouseover') should be 'true' and is.
341 PASS: canGet('onmouseup') should be 'true' and is.
342 PASS: canSet('onmouseup') should be 'true' and is.
343 PASS: canGet('onmousewheel') should be 'true' and is.
344 PASS: canSet('onmousewheel') should be 'true' and is.
345 PASS: canGet('onreset') should be 'true' and is.
346 PASS: canSet('onreset') should be 'true' and is.
347 PASS: canGet('onresize') should be 'true' and is.
348 PASS: canSet('onresize') should be 'true' and is.
349 PASS: canGet('onscroll') should be 'true' and is.
350 PASS: canSet('onscroll') should be 'true' and is.
351 PASS: canGet('onsearch') should be 'true' and is.
352 PASS: canSet('onsearch') should be 'true' and is.
353 PASS: canGet('onselect') should be 'true' and is.
354 PASS: canSet('onselect') should be 'true' and is.
355 PASS: canGet('onsubmit') should be 'true' and is.
356 PASS: canSet('onsubmit') should be 'true' and is.
357 PASS: canGet('onunload') should be 'true' and is.
358 PASS: canSet('onunload') should be 'true' and is.
359 PASS: canGet('open') should be 'true' and is. 309 PASS: canGet('open') should be 'true' and is.
360 PASS: canSet('open') should be 'true' and is. 310 PASS: canSet('open') should be 'true' and is.
361 PASS: canGet('print') should be 'true' and is. 311 PASS: canGet('print') should be 'true' and is.
362 PASS: canSet('print') should be 'true' and is. 312 PASS: canSet('print') should be 'true' and is.
363 PASS: canGet('prompt') should be 'true' and is. 313 PASS: canGet('prompt') should be 'true' and is.
364 PASS: canSet('prompt') should be 'true' and is. 314 PASS: canSet('prompt') should be 'true' and is.
365 PASS: canGet('releaseEvents') should be 'true' and is. 315 PASS: canGet('releaseEvents') should be 'true' and is.
366 PASS: canSet('releaseEvents') should be 'true' and is. 316 PASS: canSet('releaseEvents') should be 'true' and is.
367 PASS: canGet('removeEventListener') should be 'true' and is. 317 PASS: canGet('removeEventListener') should be 'true' and is.
368 PASS: canSet('removeEventListener') should be 'true' and is. 318 PASS: canSet('removeEventListener') should be 'true' and is.
369 PASS: canGet('resizeBy') should be 'true' and is. 319 PASS: canGet('resizeBy') should be 'true' and is.
370 PASS: canSet('resizeBy') should be 'true' and is. 320 PASS: canSet('resizeBy') should be 'true' and is.
371 PASS: canGet('resizeTo') should be 'true' and is. 321 PASS: canGet('resizeTo') should be 'true' and is.
372 PASS: canSet('resizeTo') should be 'true' and is. 322 PASS: canSet('resizeTo') should be 'true' and is.
373 PASS: canGet('scroll') should be 'true' and is. 323 PASS: canGet('scroll') should be 'true' and is.
374 PASS: canSet('scroll') should be 'true' and is. 324 PASS: canSet('scroll') should be 'true' and is.
375 PASS: canGet('scrollBy') should be 'true' and is. 325 PASS: canGet('scrollBy') should be 'true' and is.
376 PASS: canSet('scrollBy') should be 'true' and is. 326 PASS: canSet('scrollBy') should be 'true' and is.
377 PASS: canGet('scrollTo') should be 'true' and is. 327 PASS: canGet('scrollTo') should be 'true' and is.
378 PASS: canSet('scrollTo') should be 'true' and is. 328 PASS: canSet('scrollTo') should be 'true' and is.
379 PASS: canGet('setInterval') should be 'true' and is. 329 PASS: canGet('setInterval') should be 'true' and is.
380 PASS: canSet('setInterval') should be 'true' and is. 330 PASS: canSet('setInterval') should be 'true' and is.
381 PASS: canGet('setTimeout') should be 'true' and is. 331 PASS: canGet('setTimeout') should be 'true' and is.
382 PASS: canSet('setTimeout') should be 'true' and is. 332 PASS: canSet('setTimeout') should be 'true' and is.
383 PASS: canGet('stop') should be 'true' and is. 333 PASS: canGet('stop') should be 'true' and is.
384 PASS: canSet('stop') should be 'true' and is. 334 PASS: canSet('stop') should be 'true' and is.
385 335
336 ----- tests for getting/setting event handlers -----
337
338 PASS: canGet('onabort') should be 'true' and is.
339 PASS: canSetWithCallable('onabort') should be 'true' and is.
340 PASS: canGet('onbeforeunload') should be 'true' and is.
341 PASS: canSetWithCallable('onbeforeunload') should be 'true' and is.
342 PASS: canGet('onblur') should be 'true' and is.
343 PASS: canSetWithCallable('onblur') should be 'true' and is.
344 PASS: canGet('onchange') should be 'true' and is.
345 PASS: canSetWithCallable('onchange') should be 'true' and is.
346 PASS: canGet('onclick') should be 'true' and is.
347 PASS: canSetWithCallable('onclick') should be 'true' and is.
348 PASS: canGet('ondblclick') should be 'true' and is.
349 PASS: canSetWithCallable('ondblclick') should be 'true' and is.
350 PASS: canGet('onerror') should be 'true' and is.
351 PASS: canSetWithCallable('onerror') should be 'true' and is.
352 PASS: canGet('onfocus') should be 'true' and is.
353 PASS: canSetWithCallable('onfocus') should be 'true' and is.
354 PASS: canGet('onkeydown') should be 'true' and is.
355 PASS: canSetWithCallable('onkeydown') should be 'true' and is.
356 PASS: canGet('onkeypress') should be 'true' and is.
357 PASS: canSetWithCallable('onkeypress') should be 'true' and is.
358 PASS: canGet('onkeyup') should be 'true' and is.
359 PASS: canSetWithCallable('onkeyup') should be 'true' and is.
360 PASS: canGet('onload') should be 'true' and is.
361 PASS: canSetWithCallable('onload') should be 'true' and is.
362 PASS: canGet('onmousedown') should be 'true' and is.
363 PASS: canSetWithCallable('onmousedown') should be 'true' and is.
364 PASS: canGet('onmousemove') should be 'true' and is.
365 PASS: canSetWithCallable('onmousemove') should be 'true' and is.
366 PASS: canGet('onmouseout') should be 'true' and is.
367 PASS: canSetWithCallable('onmouseout') should be 'true' and is.
368 PASS: canGet('onmouseover') should be 'true' and is.
369 PASS: canSetWithCallable('onmouseover') should be 'true' and is.
370 PASS: canGet('onmouseup') should be 'true' and is.
371 PASS: canSetWithCallable('onmouseup') should be 'true' and is.
372 PASS: canGet('onmousewheel') should be 'true' and is.
373 PASS: canSetWithCallable('onmousewheel') should be 'true' and is.
374 PASS: canGet('onreset') should be 'true' and is.
375 PASS: canSetWithCallable('onreset') should be 'true' and is.
376 PASS: canGet('onresize') should be 'true' and is.
377 PASS: canSetWithCallable('onresize') should be 'true' and is.
378 PASS: canGet('onscroll') should be 'true' and is.
379 PASS: canSetWithCallable('onscroll') should be 'true' and is.
380 PASS: canGet('onsearch') should be 'true' and is.
381 PASS: canSetWithCallable('onsearch') should be 'true' and is.
382 PASS: canGet('onselect') should be 'true' and is.
383 PASS: canSetWithCallable('onselect') should be 'true' and is.
384 PASS: canGet('onsubmit') should be 'true' and is.
385 PASS: canSetWithCallable('onsubmit') should be 'true' and is.
386 PASS: canGet('onunload') should be 'true' and is.
387 PASS: canSetWithCallable('onunload') should be 'true' and is.
388
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/Window/get-set-properties.html ('k') | LayoutTests/fast/dom/event-attrs-isolated-world.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698