Skip to content

Commit

Permalink
update the baselines #1974
Browse files Browse the repository at this point in the history
  • Loading branch information
shunguoy committed Oct 29, 2024
1 parent d2ededb commit 61dbea8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
let adjacentX = null;
let adjacentY = null;
let checked = []; //contains a list of elements that have been checked so their descendants don't need to be checked again
for (let i=0; i < elems.length; i++) { //console.log("target="+nodeName +", target id="+ ruleContext.getAttribute("id") +" elem="+elems[i].nodeName +", id="+elems[i].getAttribute("id"));
for (let i=0; i < elems.length; i++) {
const elem = elems[i] as HTMLElement;
/**
* the nodes returned from querySelectorAll is in document order
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,10 @@ var skipList = [

// Puppeteer and embedded-chrome @media css behave differently (?)
path.join(testRoot, "element_orientation_unlocked_ruleunit","act-fail4.html"),
path.join(testRoot, "element_orientation_unlocked_ruleunit","act-pass3.html")
path.join(testRoot, "element_orientation_unlocked_ruleunit","act-pass3.html"),
path.join(testRoot, "target_spacing_sufficient_ruleunit","link_text.html"),
path.join(testRoot, "target_spacing_sufficient_ruleunit","element_inline2.html"),
path.join(testRoot, "target_spacing_sufficient_ruleunit","link_inline_with_block.html")
]

var skipMap = {}
Expand Down

0 comments on commit 61dbea8

Please sign in to comment.