You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
abort"Destination must open a safe new tab: #{href}"unlesslink["target"] == "_blank" && (%w[noopenernoreferrer] - link.fetch("rel","").split).empty?
80
+
abort"Missing new-tab accessibility hint: #{href}"unlesslink.fetch("aria-label","").include?("opens in a new tab")
81
+
abort"A new-tab destination must not activate an inline video: #{href}"iflink.key?("data-video")
82
+
else
83
+
abort"Keep #{kind} link behavior unchanged: #{href}"iflink.key?("target")
84
+
end
85
+
end
86
+
puts"PASS: all #{link_counts[:destination]} homepage destinations open safe, labeled new tabs; #{link_counts[:iso]} ISO downloads, #{link_counts[:same_page]} home/section links and #{link_counts[:email]} email link retain native behavior."
0 commit comments