Cargoify servo

This commit is contained in:
Jack Moffitt 2014-08-28 09:34:23 -06:00
parent db2f642c32
commit c6ab60dbfc
1761 changed files with 8423 additions and 2294 deletions

View file

@ -0,0 +1,20 @@
[select-event.html]
type: testharness
[select() on textarea queues select event]
expected: FAIL
[select() on input type text queues select event]
expected: FAIL
[select() on input type search queues select event]
expected: FAIL
[select() on input type tel queues select event]
expected: FAIL
[select() on input type url queues select event]
expected: FAIL
[select() on input type password queues select event]
expected: FAIL

View file

@ -0,0 +1,5 @@
[selection-not-application-textarea.html]
type: testharness
[text field selection for the input textarea]
expected: FAIL

View file

@ -0,0 +1,68 @@
[selection-not-application.html]
type: testharness
[text field selection for the input hidden]
expected: FAIL
[text field selection for the input email]
expected: FAIL
[text field selection for the input datetime]
expected: FAIL
[text field selection for the input date]
expected: FAIL
[text field selection for the input month]
expected: FAIL
[text field selection for the input week]
expected: FAIL
[text field selection for the input time]
expected: FAIL
[text field selection for the input number]
expected: FAIL
[text field selection for the input range]
expected: FAIL
[text field selection for the input color]
expected: FAIL
[text field selection for the input checkbox]
expected: FAIL
[text field selection for the input radio]
expected: FAIL
[text field selection for the input file]
expected: FAIL
[text field selection for the input submit]
expected: FAIL
[text field selection for the input image]
expected: FAIL
[text field selection for the input reset]
expected: FAIL
[text field selection for the input button]
expected: FAIL
[text field selection for the input text]
expected: FAIL
[text field selection for the input search]
expected: FAIL
[text field selection for the input tel]
expected: FAIL
[text field selection for the input url]
expected: FAIL
[text field selection for the input password]
expected: FAIL

View file

@ -0,0 +1,32 @@
[selection.html]
type: testharness
[test if selection text is correct for input]
expected: FAIL
[test if selection text is correct for textarea]
expected: FAIL
[test if non-ascii selection text is correct for input]
expected: FAIL
[test if non-ascii selection text is correct for textarea]
expected: FAIL
[test SelectionStart offset for input]
expected: FAIL
[test SelectionStart offset for textarea]
expected: FAIL
[test SelectionEnd offset for input]
expected: FAIL
[test SelectionEnd offset for textarea]
expected: FAIL
[test SelectionDirection for input]
expected: FAIL
[test SelectionDirection for textarea]
expected: FAIL

View file

@ -0,0 +1,3 @@
[textfieldselection-setRangeText.html]
type: testharness
expected: TIMEOUT

View file

@ -0,0 +1,116 @@
[textfieldselection-setSelectionRange.html]
type: testharness
[input typeof(input.setSelectionRange)\']
expected: FAIL
[input setSelectionRange return void]
expected: FAIL
[input setSelectionRange(0,1)]
expected: FAIL
[input setSelectionRange(0,input.value.length+1)]
expected: FAIL
[input setSelectionRange(2,2)]
expected: FAIL
[input setSelectionRange(2,1)]
expected: FAIL
[input direction of setSelectionRange(0,1,"backward")]
expected: FAIL
[input direction of setSelectionRange(0,1,"forward")]
expected: FAIL
[input direction of setSelectionRange(0,1,"none")]
expected: FAIL
[input direction of setSelectionRange(0,1,"hoge")]
expected: FAIL
[input direction of setSelectionRange(0,1,"BACKWARD")]
expected: FAIL
[input direction of setSelectionRange(0,1)]
expected: FAIL
[input setSelectionRange("string",1)]
expected: FAIL
[input setSelectionRange(true,1)]
expected: FAIL
[input setSelectionRange([\],1)]
expected: FAIL
[input setSelectionRange({},1)]
expected: FAIL
[input setSelectionRange(NaN,1)]
expected: FAIL
[input setSelectionRange(null,1)]
expected: FAIL
[input setSelectionRange(undefined,1)]
expected: FAIL
[textarea typeof(input.setSelectionRange)\']
expected: FAIL
[textarea setSelectionRange return void]
expected: FAIL
[textarea setSelectionRange(0,1)]
expected: FAIL
[textarea setSelectionRange(0,textarea.value.length+1)]
expected: FAIL
[textarea setSelectionRange(2,2)]
expected: FAIL
[textarea setSelectionRange(2,1)]
expected: FAIL
[textarea direction of setSelectionRange(0,1,"backward")]
expected: FAIL
[textarea direction of setSelectionRange(0,1,"forward")]
expected: FAIL
[textarea direction of setSelectionRange(0,1,"none")]
expected: FAIL
[textarea direction of setSelectionRange(0,1,"hoge")]
expected: FAIL
[textarea direction of setSelectionRange(0,1,"BACKWARD")]
expected: FAIL
[textarea direction of setSelectionRange(0,1)]
expected: FAIL
[textarea setSelectionRange("string",1)]
expected: FAIL
[textarea setSelectionRange(true,1)]
expected: FAIL
[textarea setSelectionRange([\],1)]
expected: FAIL
[textarea setSelectionRange({},1)]
expected: FAIL
[textarea setSelectionRange(NaN,1)]
expected: FAIL
[textarea setSelectionRange(null,1)]
expected: FAIL
[textarea setSelectionRange(undefined,1)]
expected: FAIL