123456789101112131415161718192021222324252627282930313233343536 |
- /* test with some html entity chars */
- digraph "ent"
- {
- /* no parse error at this but it is not translated
- "7"[label=<&>];
- */
- /* html char name */
- "1"[label=<&>];
- /* parse error at:
- "6"[label=<g;>];
- */
- /* hex value */
- "2"[label=<9>];
- /* parse error at:
- "8"[label=<	x;>];
- */
- /* parse error at:
- "9"[label=<&#-1;>];
- */
- /* decimal value */
- "3"[label=<J>];
- /* other html char name */
- "4"[label=<á>];
- /* parse error at:
- "5"[label=<áHUH;>];
- */
- "10"[label=<&&bar&>];
- /* warning at 0 char but dot issues error */
- "11"[label=<bar�bar>];
- /* this error is checked for: "13"[label=<&;>]; */
- /* this error is checked for: "14"[label=<&>]; */
- /* this error is checked for: "15"[label=<&>]; */
- /* this error is checked for: "16"[label=<&&;>]; */
- 1->2->3->4->10->11;
- }
|