View Javadoc
1   /*
2    * Copyright (c) 2002-2026 Gargoyle Software Inc.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * https://www.apache.org/licenses/LICENSE-2.0
8    *
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS,
11   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12   * See the License for the specific language governing permissions and
13   * limitations under the License.
14   */
15  package org.htmlunit;
16  
17  import static org.htmlunit.javascript.configuration.SupportedBrowser.CHROME;
18  import static org.htmlunit.javascript.configuration.SupportedBrowser.EDGE;
19  import static org.htmlunit.javascript.configuration.SupportedBrowser.FF;
20  import static org.htmlunit.javascript.configuration.SupportedBrowser.FF_ESR;
21  
22  import org.htmlunit.javascript.configuration.BrowserFeature;
23  
24  /**
25   * Constants of various features of each {@link BrowserVersion}.
26   *
27   * @author Ahmed Ashour
28   * @author Marc Guillemot
29   * @author Sudhan Moghe
30   * @author Ronald Brill
31   * @author Frank Danek
32   * @author Carsten Steul
33   * @author Anton Demydenko
34   */
35  public enum BrowserVersionFeatures {
36  
37      /** Ignore target when {@code href} is a javascript snippet. */
38      @BrowserFeature({CHROME, EDGE})
39      ANCHOR_SEND_PING_REQUEST,
40  
41      /** Background image is 'initial'. */
42      @BrowserFeature({CHROME, EDGE})
43      CSS_BACKGROUND_INITIAL,
44  
45      /** Background image is 'rgba(0, 0, 0, 0)'. */
46      @BrowserFeature({FF, FF_ESR})
47      CSS_BACKGROUND_RGBA,
48  
49      /** Is display style 'block'. */
50      @BrowserFeature({FF, FF_ESR})
51      CSS_DISPLAY_BLOCK,
52  
53      /** The default value of the display property for the 'noscript' tag is 'inline' instead of the default one. */
54      @BrowserFeature({CHROME, EDGE})
55      CSS_NOSCRIPT_DISPLAY_INLINE,
56  
57      /** The default value of the display property for the 'rp' tag is 'none'. */
58      @BrowserFeature({FF, FF_ESR})
59      CSS_RP_DISPLAY_NONE,
60  
61      /** The default value of the display property for the 'rt' tag is always 'ruby-text'. */
62      @BrowserFeature({FF, FF_ESR})
63      CSS_RT_DISPLAY_RUBY_TEXT_ALWAYS,
64  
65      /** The context menu MouseEvent has a detail of 1. */
66      @BrowserFeature({FF, FF_ESR})
67      EVENT_CONTEXT_MENU_HAS_DETAIL_1,
68  
69      /** Triggers the onfocus event when focusing the body on load. */
70      @BrowserFeature({FF, FF_ESR})
71      EVENT_FOCUS_ON_LOAD,
72  
73      /** Scroll events are of type 'UIEvent'. */
74      @BrowserFeature({FF, FF_ESR})
75      EVENT_SCROLL_UIEVENT,
76  
77      /** Supports event type 'MutationEvent'. */
78      @BrowserFeature(FF_ESR)
79      EVENT_TYPE_MUTATIONEVENT,
80  
81      /** Form elements are able to refer to the for by using the form attribute. */
82      @BrowserFeature({CHROME, EDGE})
83      FORM_IGNORE_REL_NOREFERRER,
84  
85      /** Form submit includes the Cache-Control: max-age=0 header. */
86      @BrowserFeature({CHROME, EDGE})
87      FORM_SUBMISSION_HEADER_CACHE_CONTROL_MAX_AGE,
88  
89      /** Should org.htmlunit.javascript.host.html.HTMLBaseFontElement#isEndTagForbidden(). */
90      @BrowserFeature({FF, FF_ESR})
91      HTMLBASEFONT_END_TAG_FORBIDDEN,
92  
93      /** HtmlCollection.namedItem searches by id first. */
94      @BrowserFeature({CHROME, EDGE})
95      HTMLCOLLECTION_NAMED_ITEM_ID_FIRST,
96  
97      /**
98      /** {@code document.getElementsByName} returns an empty list if called with the empty string.
99       */
100     @BrowserFeature({FF, FF_ESR})
101     HTMLDOCUMENT_ELEMENTS_BY_NAME_EMPTY,
102 
103     /** Removing the active element from the dom tree triggers the onblur event. */
104     @BrowserFeature({CHROME, EDGE})
105     HTMLELEMENT_REMOVE_ACTIVE_TRIGGERS_BLUR_EVENT,
106 
107     /** Handle blank source like empty. */
108     @BrowserFeature({CHROME, EDGE})
109     HTMLIMAGE_BLANK_SRC_AS_EMPTY,
110 
111     /** Empty src attribute sets display to false. */
112     @BrowserFeature({FF, FF_ESR})
113     HTMLIMAGE_EMPTY_SRC_DISPLAY_FALSE,
114 
115     /** Is document.cretaeElement('image') an HTMLElement. */
116     @BrowserFeature({FF, FF_ESR})
117     HTMLIMAGE_HTMLELEMENT,
118 
119     /** Is document.cretaeElement('image') an HTMLUnknownElement. */
120     @BrowserFeature({CHROME, EDGE})
121     HTMLIMAGE_HTMLUNKNOWNELEMENT,
122 
123     /** HTMLInputElement image type is not supported. */
124     @BrowserFeature({CHROME, EDGE})
125     HTMLINPUT_TYPE_IMAGE_IGNORES_CUSTOM_VALIDITY,
126 
127     /** HTMLInputElement month type is supported. */
128     @BrowserFeature({CHROME, EDGE})
129     HTMLINPUT_TYPE_MONTH_SUPPORTED,
130 
131     /** HTMLInputElement week type is supported. */
132     @BrowserFeature({CHROME, EDGE})
133     HTMLINPUT_TYPE_WEEK_SUPPORTED,
134 
135     /** For a stylesheet link report an error if the response type is not text/css. */
136     @BrowserFeature({FF, FF_ESR})
137     HTMLLINK_CHECK_RESPONSE_TYPE_FOR_STYLESHEET,
138 
139     /** If the type is present for a link only use if type is text/css. */
140     @BrowserFeature({CHROME, EDGE})
141     HTMLLINK_CHECK_TYPE_FOR_STYLESHEET,
142 
143     /** Should org.htmlunit.javascript.host.html.HTMLTrackElement#isEndTagForbidden(). */
144     @BrowserFeature({FF, FF_ESR})
145     HTMLTRACK_END_TAG_FORBIDDEN,
146 
147     /** HTML parser supports the 'layer' tag. */
148     @BrowserFeature({CHROME, EDGE})
149     HTML_LAYER_TAG,
150 
151     /** Additionally support dates in format "d/M/yyyy". */
152     @BrowserFeature({FF, FF_ESR})
153     HTTP_COOKIE_EXTENDED_DATE_PATTERNS_1,
154 
155     /** Dates format pattern 2. */
156     @BrowserFeature({CHROME, EDGE})
157     HTTP_COOKIE_EXTENDED_DATE_PATTERNS_2,
158 
159     /** domain '.org' is handled as 'org'. */
160     @BrowserFeature({FF, FF_ESR})
161     HTTP_COOKIE_REMOVE_DOT_FROM_ROOT_DOMAINS,
162 
163     /** Browser sends Sec-ch headers. */
164     @BrowserFeature({CHROME, EDGE})
165     HTTP_HEADER_CH_UA,
166 
167     /** Browser sends Priority headers. */
168     @BrowserFeature({FF, FF_ESR})
169     HTTP_HEADER_PRIORITY,
170 
171     /** The anchor hostname setter ignores blank url's. */
172     @BrowserFeature({FF, FF_ESR})
173     JS_ANCHOR_HOSTNAME_IGNORE_BLANK,
174 
175     /**
176      * The anchor pathname detects url's starting with one letter as file url's
177      * and replaces them with the file protocol. */
178     @BrowserFeature({CHROME, EDGE})
179     JS_ANCHOR_PATHNAME_DETECT_WIN_DRIVES_URL_REPLACE,
180 
181     /** The anchor pathname prefixes file url's with '/'. */
182     @BrowserFeature({CHROME, EDGE})
183     JS_ANCHOR_PATHNAME_PREFIX_WIN_DRIVES_URL,
184 
185     /** The anchor protocol property converts drive letters to uppercase. */
186     @BrowserFeature({CHROME, EDGE})
187     JS_ANCHOR_PROTOCOL_COLON_UPPER_CASE_DRIVE_LETTERS,
188 
189     /** An area element without a href attribute is focusable. */
190     @BrowserFeature({FF, FF_ESR})
191     JS_AREA_WITHOUT_HREF_FOCUSABLE,
192 
193     /** Sorting an array using a user defined comperator accepts inconsistent iterators. */
194     @BrowserFeature({FF, FF_ESR})
195     JS_ARRAY_SORT_ACCEPTS_INCONSISTENT_COMPERATOR,
196 
197     /** AudioProcessingEvent ctor is callable. */
198     @BrowserFeature({CHROME, EDGE})
199     JS_AUDIO_PROCESSING_EVENT_CTOR,
200 
201     /** toDataURL for canvas returns the CHROME version of the PNG. */
202     @BrowserFeature({CHROME, EDGE})
203     JS_CANVAS_DATA_URL_CHROME_PNG,
204 
205     /** ClientHeight for input is 17. */
206     @BrowserFeature({CHROME, EDGE})
207     JS_CLIENTHEIGHT_INPUT_17,
208 
209     /** ClientHeight for input is 18. */
210     @BrowserFeature({FF, FF_ESR})
211     JS_CLIENTHEIGHT_INPUT_18,
212 
213     /** ClientHeight for radio button and checkbox is 14. */
214     @BrowserFeature({FF, FF_ESR})
215     JS_CLIENTHEIGHT_RADIO_CHECKBOX_14,
216 
217     /** ClientHeight for rb is 17. */
218     @BrowserFeature({FF, FF_ESR})
219     JS_CLIENTHEIGHT_RB_17,
220 
221     /** ClientHeight for rt is 9. */
222     @BrowserFeature({FF, FF_ESR})
223     JS_CLIENTHEIGHT_RT_9,
224 
225     /** ClientHeight for ruby is 17. */
226     @BrowserFeature({FF, FF_ESR})
227     JS_CLIENTHEIGHT_RUBY_17,
228 
229     /** ClientWidth for text/password input is 157. */
230     @BrowserFeature(FF)
231     JS_CLIENTWIDTH_INPUT_TEXT_157,
232 
233     /** ClientWidth for text/password input is 173. */
234     @BrowserFeature({CHROME, EDGE})
235     JS_CLIENTWIDTH_INPUT_TEXT_173,
236 
237     /** ClientWidth for radio button and checkbox is 14. */
238     @BrowserFeature({FF, FF_ESR})
239     JS_CLIENTWIDTH_RADIO_CHECKBOX_14,
240 
241     /** item is enumerated before length property of CSSRuleList. */
242     @BrowserFeature({FF, FF_ESR})
243     JS_CSSRULELIST_ENUM_ITEM_LENGTH,
244 
245     /** Javascript document.evaluate() creates a new result object even if provided as param. */
246     @BrowserFeature({CHROME, EDGE})
247     JS_DOCUMENT_EVALUATE_RECREATES_RESULT,
248 
249     /** The browser has selection {@code rangeCount}. */
250     @BrowserFeature({FF, FF_ESR})
251     JS_DOCUMENT_SELECTION_RANGE_COUNT,
252 
253     /** Javascript {@code Error.stackTraceLimit}. */
254     @BrowserFeature({CHROME, EDGE})
255     JS_ERROR_STACK_TRACE_LIMIT,
256 
257     /** Javascript InputEvent reads the inputType property from data. */
258     @BrowserFeature({FF, FF_ESR})
259     JS_EVENT_INPUT_CTOR_INPUTTYPE,
260 
261     /** Javascript KeyboardEvent reads the which property from data. */
262     @BrowserFeature({FF, FF_ESR})
263     JS_EVENT_KEYBOARD_CTOR_WHICH,
264 
265     /** form.dispatchEvent(e) submits the form if the event is of type 'submit'. */
266     @BrowserFeature({FF, FF_ESR})
267     JS_FORM_DISPATCHEVENT_SUBMITS,
268 
269     /** Executes the {@code onload} handler, regardless of the element was already attached to the page. */
270     @BrowserFeature({FF, FF_ESR})
271     JS_IFRAME_ALWAYS_EXECUTE_ONLOAD,
272 
273     /**
274      * Getting the width and height of an image tag without a source returns 16x16;
275      * for invalid values returns 0.
276      */
277     @BrowserFeature({CHROME, EDGE})
278     JS_IMAGE_WIDTH_HEIGHT_RETURNS_16x16_0x0,
279 
280     /**
281      * Getting the width and height of an image tag without a source returns 24x24;
282      * for invalid values returns 0x0.
283      */
284     @BrowserFeature({FF, FF_ESR})
285     JS_IMAGE_WIDTH_HEIGHT_RETURNS_24x24_0x0,
286 
287     /** Indicates that innerText add a nl when reaching svg element. */
288     @BrowserFeature({CHROME, EDGE})
289     JS_INNER_TEXT_SVG_NL,
290 
291     /** The value is ignored when the type of the week/month input is changed. */
292     @BrowserFeature({CHROME, EDGE})
293     JS_INPUT_CHANGE_TYPE_DROPS_VALUE_WEEK_MONTH,
294 
295     /** FF accepts all chars. */
296     @BrowserFeature({FF, FF_ESR})
297     JS_INPUT_NUMBER_ACCEPT_ALL,
298 
299     /** FF comma at end is not an integer. */
300     @BrowserFeature({FF, FF_ESR})
301     JS_INPUT_NUMBER_DOT_AT_END_IS_DOUBLE,
302 
303     /** Indicates that Intl.v8BreakIterator is supported. */
304     @BrowserFeature({CHROME, EDGE})
305     JS_INTL_V8_BREAK_ITERATOR,
306 
307     /** For the 'about' protocol the location always returns an empty query. */
308     @BrowserFeature(FF_ESR)
309     JS_LOCATION_IGNORE_QUERY_FOR_ABOUT_PROTOCOL,
310 
311     /** Reload sends a referrer header. */
312     @BrowserFeature({CHROME, EDGE})
313     JS_LOCATION_RELOAD_REFERRER,
314 
315     /** Type property of menu returns the current (maybe invalid) value. */
316     @BrowserFeature({FF, FF_ESR})
317     JS_MENU_TYPE_PASS,
318 
319     /** Indicates if the String representation of a native function is without newline. */
320     @BrowserFeature({CHROME, EDGE})
321     JS_NATIVE_FUNCTION_TOSTRING_COMPACT,
322 
323     /** Indicates if the String representation of a native function has a newline for empty parameter list. */
324     @BrowserFeature({FF, FF_ESR})
325     JS_NATIVE_FUNCTION_TOSTRING_NL,
326 
327     /** Navigator.doNotTrack returns unspecified if not set. */
328     @BrowserFeature({FF, FF_ESR})
329     JS_NAVIGATOR_DO_NOT_TRACK_UNSPECIFIED,
330 
331     /** Indicates that someObj.offsetParent returns null, it someObj has fixed style. */
332     @BrowserFeature({CHROME, EDGE, FF})
333     JS_OFFSET_PARENT_NULL_IF_FIXED,
334 
335     /** Indicates that the {@code Object.getOwnPropertyDescriptor.get} contains name. */
336     @BrowserFeature({FF, FF_ESR})
337     JS_PROPERTY_DESCRIPTOR_NAME,
338 
339     /** script tags created from js as child of templates is processed if added to the dom. */
340     @BrowserFeature({CHROME, EDGE})
341     JS_SCRIPT_IN_TEMPLATE_EXECUTED_ON_ATTACH,
342 
343     /** Javascript selectorText property returns selectors in lower case. */
344     @BrowserFeature({CHROME, EDGE})
345     JS_SELECTOR_TEXT_LOWERCASE,
346 
347     /** Indicates that select.options.remove ignores the call if index is too large. */
348     @BrowserFeature({FF, FF_ESR})
349     JS_SELECT_REMOVE_IGNORE_IF_INDEX_OUTSIDE,
350 
351     /** Whether to add to the storage even preserved words. */
352     @BrowserFeature({FF, FF_ESR})
353     JS_STORAGE_PRESERVED_INCLUDED,
354 
355     /** window.getComputedStyle works with pseudo selectors without colon in front. */
356     @BrowserFeature({CHROME, EDGE})
357     JS_WINDOW_COMPUTED_STYLE_PSEUDO_ACCEPT_WITHOUT_COLON,
358 
359     /** Javascript InstallTrigger property set to null. */
360     @BrowserFeature({FF, FF_ESR})
361     JS_WINDOW_INSTALL_TRIGGER_NULL,
362 
363     /**
364      * Difference of window.outer/inner height is 138.
365      */
366     @BrowserFeature(EDGE)
367     JS_WINDOW_OUTER_INNER_HEIGHT_DIFF_138,
368 
369     /**
370      * Difference of window.outer/inner height is 147.
371      */
372     @BrowserFeature(CHROME)
373     JS_WINDOW_OUTER_INNER_HEIGHT_DIFF_147,
374 
375     /**
376      * Difference of window.outer/inner height is 94.
377      */
378     @BrowserFeature({FF, FF_ESR})
379     JS_WINDOW_OUTER_INNER_HEIGHT_DIFF_94,
380 
381     /** Window.getSelection returns null, if the window is not visible. */
382     @BrowserFeature({FF, FF_ESR})
383     JS_WINDOW_SELECTION_NULL_IF_INVISIBLE,
384 
385     /** {@code XSLTProcessor.transformToDocument} supports output indent attribute. */
386     @BrowserFeature({CHROME, EDGE})
387     JS_XSLT_TRANSFORM_INDENT,
388 
389     /** With special keys [in .type(int)], should we trigger onkeypress event or not. */
390     @BrowserFeature({FF, FF_ESR})
391     KEYBOARD_EVENT_SPECIAL_KEYPRESS,
392 
393     /**
394      * Indicates that the Browser handles async and sync network errors the same way.
395      */
396     @BrowserFeature({FF, FF_ESR})
397     XHR_HANDLE_SYNC_NETWORK_ERRORS,
398 
399     /** XMLHttpRequest triggers the load events also if the abort was signaled. */
400     @BrowserFeature({FF, FF_ESR})
401     XHR_LOAD_ALWAYS_AFTER_DONE,
402 
403     /** If state unsent the response text is empty even if the response type is wrong. */
404     @BrowserFeature({FF, FF_ESR})
405     XHR_RESPONSE_TEXT_EMPTY_UNSENT,
406 
407     /** Indicates if the XMLHttpRequest.send() method will throw if aborted. */
408     @BrowserFeature({CHROME, EDGE})
409     XHR_SEND_NETWORK_ERROR_IF_ABORTED,
410 }