gecko-dev/dom/html/test/forms/mochitest.ini

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

117 lines
3.8 KiB
INI
Raw Normal View History

[DEFAULT]
support-files =
save_restore_radio_groups.sjs
test_input_number_data.js
utils.js
!/dom/html/test/reflect.js
FAIL.html
PASS.html
[test_autocomplete.html]
[test_bug1039548.html]
[test_bug1283915.html]
[test_bug1286509.html]
skip-if = os == "android" # up/down arrow keys not supported on android
[test_button_attributes_reflection.html]
[test_input_radio_indeterminate.html]
[test_input_radio_radiogroup.html]
[test_input_radio_required.html]
[test_change_event.html]
[test_datalist_element.html]
[test_form_attribute-1.html]
[test_form_attribute-2.html]
[test_form_attribute-3.html]
[test_form_attribute-4.html]
[test_form_attributes_reflection.html]
[test_form_named_getter_dynamic.html]
[test_formaction_attribute.html]
[test_formnovalidate_attribute.html]
[test_input_attributes_reflection.html]
[test_input_color_input_change_events.html]
[test_input_color_picker_initial.html]
[test_input_color_picker_popup.html]
[test_input_color_picker_update.html]
[test_input_date_bad_input.html]
[test_input_date_key_events.html]
[test_input_datetime_input_change_events.html]
[test_input_datetime_focus_blur.html]
[test_input_datetime_focus_blur_events.html]
[test_input_datetime_focus_state.html]
Bug 1514040 - Dispatch events to hidden datetimebox UA Widget r=smaug The XBL binding implementation relied on nsDateTimeControlFrame to call into its nsIDateTimeInputArea implementation. This is correct because the XBL binding is only constructed when the element has a frame. If the value is set while the element is hidden, the XBL binding will pick up the correct value during construction. That is not the case for UA Widget. As it is constructed when the DOM is attached, relying on nsDateTimeControlFrame to send an event when attributes change means the event won't be sent to the already constructed UA Widget. This patch fixes that by moving the event dispatching calls originating from HTMLInputElement out of nsDateTimeControlFrame, so they will behave correctly in the absence of the frame. I've also moved the gut of nsDateTimeControlFrame::HasBadInput() to DateTimeInputTypeBase::HasBadInput(). Content script should be allowed to validate the input without the frame. Sadly this means the XBL implementation and the UA Widget implementation have further diverged. The complexity should go away when we could finally remove the XBL implementation. nsDateTimeControlFrame still dispatches a few events to UA Widget, in AttributeChanged() and SyncDisabledState(), as they are originated from the layout. The name of the events in AttributeChanged() are incorrect though -- I am correcting that in this patch too. Differential Revision: https://phabricator.services.mozilla.com/D15601 --HG-- extra : moz-landing-system : lando
2019-01-04 21:53:51 +00:00
[test_input_datetime_hidden.html]
[test_input_datetime_readonly.html]
[test_input_datetime_reset_button.html]
[test_input_datetime_reset_default_value_input_change_event.html]
[test_input_datetime_tabindex.html]
[test_input_defaultValue.html]
[test_input_email.html]
[test_input_event.html]
[test_input_file_picker.html]
[test_input_hasBeenTypePassword.html]
[test_input_hasBeenTypePassword_navigation.html]
support-files = file_login_fields.html
[test_input_list_attribute.html]
[test_input_number_l10n.html]
[test_input_number_key_events.html]
[test_input_number_mouse_events.html]
# Not run on Firefox for Android where the spin buttons are hidden:
skip-if = os == "android" || (os == "mac" && debug) # Bug 1484442
[test_input_number_rounding.html]
skip-if = os == "android"
[test_input_number_validation.html]
[test_input_number_focus.html]
[test_input_number_placeholder_shown.html]
[test_input_range_attr_order.html]
[test_input_range_key_events.html]
[test_input_range_mouse_and_touch_events.html]
[test_input_range_rounding.html]
[test_input_sanitization.html]
skip-if = os == 'android' && debug # Extremely slow on debug android
[test_input_textarea_set_value_no_scroll.html]
[test_input_time_key_events.html]
[test_input_time_sec_millisec_field.html]
[test_input_types_pref.html]
[test_input_typing_sanitization.html]
skip-if = os == "android" && debug # bug 1397615
[test_input_untrusted_key_events.html]
[test_input_url.html]
[test_interactive_content_in_label.html]
[test_interactive_content_in_summary.html]
[test_label_control_attribute.html]
[test_label_input_controls.html]
[test_max_attribute.html]
[test_maxlength_attribute.html]
[test_minlength_attribute.html]
[test_meter_element.html]
[test_meter_pseudo-classes.html]
[test_min_attribute.html]
[test_MozEditableElement_setUserInput.html]
[test_mozistextfield.html]
[test_novalidate_attribute.html]
[test_option_disabled.html]
[test_option_index_attribute.html]
[test_option_text.html]
[test_output_element.html]
[test_pattern_attribute.html]
[test_progress_element.html]
[test_radio_in_label.html]
[test_radio_radionodelist.html]
[test_required_attribute.html]
[test_restore_form_elements.html]
[test_save_restore_radio_groups.html]
[test_select_change_event.html]
skip-if = os == 'mac'
[test_select_input_change_event.html]
skip-if = os == 'mac'
[test_select_selectedOptions.html]
[test_select_validation.html]
[test_set_range_text.html]
[test_step_attribute.html]
[test_stepup_stepdown.html]
[test_textarea_attributes_reflection.html]
[test_validation.html]
[test_valueAsDate_pref.html]
[test_valueasdate_attribute.html]
[test_valueasnumber_attribute.html]
[test_validation_not_in_doc.html]
[test_reportValidation_preventDefault.html]