Skip to content

Commit

Permalink
Chrome/Edge 128
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Aug 25, 2024
1 parent 5d0cce5 commit d5821b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
import static org.htmlunit.css.CssStyleSheet.STATIC;
import static org.htmlunit.javascript.configuration.SupportedBrowser.CHROME;
import static org.htmlunit.javascript.configuration.SupportedBrowser.EDGE;
import static org.htmlunit.javascript.configuration.SupportedBrowser.FF;
import static org.htmlunit.javascript.configuration.SupportedBrowser.FF_ESR;

import java.util.ArrayList;
import java.util.Arrays;
Expand Down Expand Up @@ -1520,7 +1518,7 @@ public void setRight(final Object right) {
* Gets the {@code rubyAlign} style attribute.
* @return the style attribute
*/
@JsxGetter({FF, FF_ESR})
@JsxGetter
public String getRubyAlign() {
if (styleDeclaration_ == null) {
return null; // prototype
Expand All @@ -1532,7 +1530,7 @@ public String getRubyAlign() {
* Sets the {@code rubyAlign} style attribute.
* @param rubyAlign the new attribute
*/
@JsxSetter({FF, FF_ESR})
@JsxSetter
public void setRubyAlign(final String rubyAlign) {
setStyleAttribute(Definition.RUBY_ALIGN.getAttributeName(), rubyAlign);
}
Expand Down
8 changes: 4 additions & 4 deletions src/test/java/org/htmlunit/general/ElementPropertiesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -6906,9 +6906,9 @@ public void nodeListButtonLabels() throws Exception {
+ "paddingInlineStart,paddingLeft,paddingRight,paddingTop,page,pageBreakAfter,pageBreakBefore,"
+ "pageBreakInside,pageOrientation,paintOrder,parentRule,perspective,perspectiveOrigin,placeContent,"
+ "placeItems,placeSelf,pointerEvents,position,"
+ "positionAnchor,positionTry,positionTryOptions,positionTryOrder,positionVisibility,"
+ "positionAnchor,positionTry,positionTryFallbacks,positionTryOrder,positionVisibility,"
+ "prefix,quotes,r,range,removeProperty(),resize,right,"
+ "rotate,rowGap,rubyPosition,rx,ry,"
+ "rotate,rowGap,rubyAlign,rubyPosition,rx,ry,"
+ "scale,scrollbarColor,scrollbarGutter,scrollbarWidth,scrollBehavior,scrollMargin,scrollMarginBlock,"
+ "scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginBottom,scrollMarginInline,"
+ "scrollMarginInlineEnd,scrollMarginInlineStart,scrollMarginLeft,scrollMarginRight,scrollMarginTop,"
Expand Down Expand Up @@ -7034,9 +7034,9 @@ public void nodeListButtonLabels() throws Exception {
+ "paddingInlineStart,paddingLeft,paddingRight,paddingTop,page,pageBreakAfter,pageBreakBefore,"
+ "pageBreakInside,pageOrientation,paintOrder,parentRule,perspective,perspectiveOrigin,placeContent,"
+ "placeItems,placeSelf,pointerEvents,position,"
+ "positionAnchor,positionTry,positionTryOptions,positionTryOrder,positionVisibility,"
+ "positionAnchor,positionTry,positionTryFallbacks,positionTryOrder,positionVisibility,"
+ "prefix,quotes,r,range,removeProperty(),resize,right,"
+ "rotate,rowGap,rubyPosition,rx,ry,"
+ "rotate,rowGap,rubyAlign,rubyPosition,rx,ry,"
+ "scale,scrollbarColor,scrollbarGutter,scrollbarWidth,scrollBehavior,scrollMargin,scrollMarginBlock,"
+ "scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginBottom,scrollMarginInline,"
+ "scrollMarginInlineEnd,scrollMarginInlineStart,scrollMarginLeft,scrollMarginRight,scrollMarginTop,"
Expand Down

0 comments on commit d5821b0

Please sign in to comment.