aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/flow/RetrieveTableMarker.java
diff options
context:
space:
mode:
authorJoao Goncalves <jgoncalves@smartcommunications.com>2025-08-05 19:46:20 -0500
committerJoao Goncalves <jgoncalves@smartcommunications.com>2025-08-06 18:09:31 -0500
commit062592dc9d1f3d5258b0790c3de3728aab50d889 (patch)
tree3eeb5c2e70c9a36b85dd05a60f50ec8cf7c70bfc /src/java/org/apache/fop/fo/flow/RetrieveTableMarker.java
parent35a432760efcacd9a50e381020420ea58e7f5efc (diff)
downloadxmlgraphics-fop-main.tar.gz
xmlgraphics-fop-main.zip
FOP-3087 Add fonts element after auto-detect element is added to itHEADmain
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/RetrieveTableMarker.java')
0 files changed, 0 insertions, 0 deletions
ass="w"> "jquery", "lib/helper", "ui/widgets/button" ], function( QUnit, $, helper ) { "use strict"; QUnit.module( "Button: methods", { afterEach: helper.moduleAfterEach } ); QUnit.test( "destroy", function( assert ) { assert.expect( 1 ); assert.domEqual( "#button", function() { $( "#button" ).button().button( "destroy" ); } ); } ); QUnit.test( "refresh: Ensure disabled state is preserved correctly.", function( assert ) { assert.expect( 3 ); var element = $( "<a href='#'></a>" ); element.button( { disabled: true } ).button( "refresh" ); assert.ok( element.button( "option", "disabled" ), "Anchor button should remain disabled after refresh" ); element = $( "<button></button>" ); element.button( { disabled: true } ).button( "refresh" ); assert.ok( element.button( "option", "disabled" ), "<button> should remain disabled after refresh" ); element = $( "<button></button>" ); element.button( { disabled: true } ).prop( "disabled", false ).button( "refresh" ); assert.ok( !element.button( "option", "disabled" ), "Changing a <button>'s disabled property should update the state after refresh." ); } ); } );