()
| 577 | |
| 578 | #[test] |
| 579 | fn test_pseudo_class() { |
| 580 | let output = roundtrip(b"<!DOCTYPE html><html><head><title>Title of the document</title><style>h1:hover { color:blue; }</style></head><body><h1>Hello world!</h1></body></html>"); |
| 581 | assert_eq!(output, b"<!DOCTYPE html><html><head><title>Title of the document</title></head><body><h1>Hello world!</h1></body></html>"); |
| 582 | } |
| 583 | |
| 584 | #[test] |
| 585 | fn test_comment() { |
nothing calls this directly
no test coverage detected