| 12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Intentionally invalid document for testing validation error display -->
- <ui-layout-def xmlns="http://quadarax.com/ui-layout-definition"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- version="1.6" schema-version="1.6" target-platform="basic">
- <!-- Missing required <patterns> section -->
- <!-- Invalid element at root level -->
- <bogus-element foo="bar"/>
- <!-- Window without required name attribute -->
- <window title="Broken Window">
- <template>
- <!-- Unknown control type (not in any schema) -->
- <SuperWidget name="ctrl_001" x="0" y="0" width="100" height="100"/>
- </template>
- </window>
- <!-- Duplicate window name -->
- <window name="" title="Empty Name Window">
- <template>
- <Label name="ctrl_002" x="0" y="0" width="100" height="30"/>
- </template>
- </window>
- </ui-layout-def>
|