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
{{ message }}
This repository has been archived by the owner on Mar 10, 2022. It is now read-only.
In this case the helper script has a description call that has a relevant title. The current behavior is use the file path as the title if there is no description call or existing title tag, but it would be better if we used the description title from the helper script. This is relatively non-trivial since it would potentially require transformations to be dependent on each other and the tool to keep meta-information on extracted titles from previous transformations.
Example:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>fast/dom/SelectorAPI/id-fastpath-strict.html</title>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
</head>
<body>
<script src="resources/id-fastpath-strict.js"></script>
</body>
</html>
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In this case the helper script has a
description
call that has a relevant title. The current behavior is use the file path as the title if there is no description call or existing title tag, but it would be better if we used thedescription
title from the helper script. This is relatively non-trivial since it would potentially require transformations to be dependent on each other and the tool to keep meta-information on extracted titles from previous transformations.Example:
The text was updated successfully, but these errors were encountered: