Skip to content

Commit

Permalink
Remove manifest attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
NiedziolkaMichal authored and sideshowbarker committed Oct 25, 2022
1 parent 8e50f08 commit 66510f3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
9 changes: 0 additions & 9 deletions schema/html5/applications.rnc
Expand Up @@ -95,15 +95,6 @@ datatypes w = "http://whattf.org/datatype-draft"
)
}

## Application Cache: manifest

html.attrs.manifest =
attribute manifest {
common.data.uri.non-empty
}

html.attrs &= html.attrs.manifest?

## Progess Indicator: <progress>

progress.elem =
Expand Down
5 changes: 0 additions & 5 deletions src/nu/validator/checker/ConformingButObsoleteWarner.java
Expand Up @@ -59,11 +59,6 @@ public void startElement(String uri, String localName, String name,
+ " Consider putting an \u201Cid\u201D attribute"
+ " on the nearest container instead.");
}
} else if ("html" == localName) {
if (atts.getIndex("", "manifest") > -1) {
warn("The manifest-based application cache feature is"
+ " obsolete. Consider using service workers instead.");
}
}
}
}
Expand Down

0 comments on commit 66510f3

Please sign in to comment.