| Index: tests/html/node_validator_test.dart
|
| diff --git a/tests/html/node_validator_test.dart b/tests/html/node_validator_test.dart
|
| index 3189ec38310bb36234ef561595f0e763affe9968..f460c1bd3fb5c647840719f2e94f67367fb7782b 100644
|
| --- a/tests/html/node_validator_test.dart
|
| +++ b/tests/html/node_validator_test.dart
|
| @@ -369,15 +369,16 @@ main() {
|
|
|
| testHtml('blocks foreignObject content',
|
| validator,
|
| - '<svg xmlns="http://www.w3.org/2000/svg>'
|
| + '<svg xmlns="http://www.w3.org/2000/svg">'
|
| '<foreignobject width="100" height="150">'
|
| '<body xmlns="http://www.w3.org/1999/xhtml">'
|
| '<div>Some content</div>'
|
| '</body>'
|
| '</foreignobject>'
|
| + '<number>42</number>'
|
| '</svg>',
|
| - '<svg xmlns="http://www.w3.org/2000/svg>'
|
| - '<foreignobject width="100" height="150"></foreignobject>'
|
| + '<svg xmlns="http://www.w3.org/2000/svg">'
|
| + '<number>42</number>'
|
| '</svg>');
|
| });
|
|
|
|
|