Re: [html] First batch of i18n tests: translate mode (#252)

Yeah, I'm actually suggesting dropping the whole unrelated visual feedback. The file should really look like this:

``` html
<!DOCTYPE html>
<html  lang="en" >
<head>
<meta charset="utf-8"/>
<title>translate-enabled state, default</title>
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
<link rel='help' href='http://www.w3.org/TR/html5/dom.html#the-translate-attribute'>
<script src="http://w3c-test.org/resources/testharness.js"></script>
<script src="http://w3c-test.org/resources/testharnessreport.js"></script>
</head>
<body>
 
<div class="test"><div id="box"></div></div>
 
<script>
test(function() {
    assert_true(document.getElementById('box').translate);
  }, "translation mode is enabled in the abscence of a translate attribute.");
</script><div id='log'></div></body>
</html>
```

View on GitHub: https://github.com/w3c/web-platform-tests/pull/252#discussion_r5220938

Received on Tuesday, 16 July 2013 16:52:30 UTC