Changeset 54260 for trunk/tests/phpunit/tests/blocks/supportedStyles.php
- Timestamp:
- 09/20/2022 03:41:44 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/blocks/supportedStyles.php
r54211 r54260 380 380 381 381 $expected_classes = 'foo-bar-class wp-block-example'; 382 $expected_styles = 'test: style; font-size: 382 $expected_styles = 'test: style; font-size:10px;'; 383 383 384 384 $this->assert_content_and_styles_and_classes_match( $block, $expected_classes, $expected_styles ); … … 437 437 438 438 $expected_classes = 'foo-bar-class wp-block-example'; 439 $expected_styles = 'test: style; line-height: 439 $expected_styles = 'test: style; line-height:10;'; 440 440 441 441 $this->assert_content_and_styles_and_classes_match( $block, $expected_classes, $expected_styles ); … … 564 564 565 565 $expected_classes = 'foo-bar-class wp-block-example has-text-color has-background alignwide'; 566 $expected_styles = 'test: style; color:#000; background-color:#fff; font-size: 10px; line-height:20;';566 $expected_styles = 'test: style; color:#000; background-color:#fff; font-size:10px; line-height:20;'; 567 567 568 568 $this->assert_content_and_styles_and_classes_match( $block, $expected_classes, $expected_styles ); … … 607 607 608 608 $expected_classes = 'foo-bar-class wp-block-example'; 609 $expected_styles = 'test: style; font-size: 609 $expected_styles = 'test: style; font-size:10px;'; 610 610 611 611 $this->assert_content_and_styles_and_classes_match( $block, $expected_classes, $expected_styles );
Note: See TracChangeset
for help on using the changeset viewer.