From 44ecd82454db04da05ee06cb680e097f8db59885 Mon Sep 17 00:00:00 2001 From: Connor Skees Date: Mon, 17 Aug 2020 05:13:30 -0400 Subject: [PATCH] add ignored test for silent comment in attribute --- tests/selectors.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/selectors.rs b/tests/selectors.rs index 9cebfa6..6c70e00 100644 --- a/tests/selectors.rs +++ b/tests/selectors.rs @@ -681,6 +681,12 @@ test!( "#{inspect(&)} {\n color: &;\n}\n", "null {\n color: null;\n}\n" ); +test!( + #[ignore = "we do not yet have a good way of consuming a string without converting \a to a newline"] + silent_comment_in_quoted_attribute_value, + ".foo bar[val=\"//\"] {\n color: &;\n}\n", + ".foo bar[val=\"//\"] {\n color: .foo bar[val=\"//\"];\n}\n" +); error!( a_n_plus_b_n_invalid_odd, ":nth-child(ofdd) {\n color: &;\n}\n", "Error: Expected \"odd\"."