Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /ai/language_detection/availability-detached-crash.tentative.https.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Assures no crash upon call of LanguageDetector.availability() on a detached document</title>
<link rel="author" href="mailto:christinesm@chromium.org">
<body>
<iframe src="about:blank"></iframe>
<script>
const factory = frames[0].LanguageDetector;
const detector = factory.create();
document.getElementsByTagName("iframe")[0].remove();
detector.availability();
</script>
</body>