Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/script/xpath/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ fn union_expr(input: &str) -> IResult<&str, Expr> {
}

fn path_expr(input: &str) -> IResult<&str, Expr> {
alt((
ws(alt((
// "//" RelativePathExpr
map(
pair(tag("//"), move |i| relative_path_expr(true, i)),
Expand Down Expand Up @@ -545,7 +545,7 @@ fn path_expr(input: &str) -> IResult<&str, Expr> {
),
// RelativePathExpr
move |i| relative_path_expr(false, i),
))
)))
.parse(input)
}

Expand Down
6 changes: 0 additions & 6 deletions tests/wpt/meta/domxpath/lexical-structure.html.ini

This file was deleted.

Loading