Files
openide/plugins/javaFX/testData/highlighting/nullObjectValue.fxml
Aleksandra Zolushkina 0e3c3be4aa Fix JavaFXHighlightingTest.testNullObjectValue
GitOrigin-RevId: 3e8731aefb7d12bade404043bd97853d47e1d47d
2020-11-30 22:18:08 +00:00

9 lines
494 B
XML

<?import javafx.scene.control.Button?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.control.Label?>
<VBox xmlns="http://javafx.com/javafx/8.0.91">
<Label text="${null}" textAlignment="$null "/>
<Button text="$null " tooltip="$null" textAlignment="${null}"/>
<Label text=<error descr="Spaces aren't allowed before a property or an expression">" ${null}"</error>/>
<Label text=<error descr="Spaces aren't allowed before a property or an expression">" $null"</error>/>
</VBox>