Bug 1368097 - Update standards link. r=smaug

--HG--
extra : rebase_source : d96b3043a1f55d8a61042046e0fe1fd47df8c4b5
This commit is contained in:
Dominic Farolino 2017-05-26 14:02:00 -04:00
parent b7e02bedbb
commit 6590a708e6

View File

@ -57,8 +57,8 @@ namespace mozilla {
class EventListenerManager;
namespace dom {
/**
* @return true if aChar is what the DOM spec defines as 'space character'.
* http://dom.spec.whatwg.org/#space-character
* @return true if aChar is what the WHATWG defines as a 'ascii whitespace'.
* https://infra.spec.whatwg.org/#ascii-whitespace
*/
inline bool IsSpaceCharacter(char16_t aChar) {
return aChar == ' ' || aChar == '\t' || aChar == '\n' || aChar == '\r' ||