Skip to content

Commit

Permalink
rhino resync
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Aug 9, 2024
1 parent f2caef7 commit 0d232ce
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@

<body>
<release version="4.5.0" date="xxxx, 2024" description="WebWorker, Bugfixes">
<action type="fix" dev="RhinoTeam">
core-js: Error with yield in ComputedPropertyName fixed.
</action>
<action type="add" dev="RhinoTeam">
core-js: Support ctor for regex that takes an existing regex and a different set of flags.
</action>
<action type="fix" dev="rbri" issue="#844">
FF implements a special handling for the return value of the compareFn function
used to custom sort arrays. If the result is a boolean the value false will not
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/org/htmlunit/BrowserVersionFeatures.java
Original file line number Diff line number Diff line change
Expand Up @@ -237,14 +237,14 @@ public enum BrowserVersionFeatures {
@BrowserFeature({CHROME, EDGE})
JS_ANCHOR_PROTOCOL_COLON_UPPER_CASE_DRIVE_LETTERS,

/** Sorting an array using a user defined comperator accepts inconsistent iterators. */
@BrowserFeature({FF, FF_ESR})
JS_ARRAY_SORT_ACCEPTS_INCONSISTENT_COMPERATOR,

/** An area element without a href attribute is focusable. */
@BrowserFeature({FF, FF_ESR})
JS_AREA_WITHOUT_HREF_FOCUSABLE,

/** Sorting an array using a user defined comperator accepts inconsistent iterators. */
@BrowserFeature({FF, FF_ESR})
JS_ARRAY_SORT_ACCEPTS_INCONSISTENT_COMPERATOR,

/** AudioProcessingEvent ctor is callable. */
@BrowserFeature({CHROME, EDGE})
JS_AUDIO_PROCESSING_EVENT_CTOR,
Expand Down

0 comments on commit 0d232ce

Please sign in to comment.