зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1000935: Added NDEF helpers for NFC test cases. r=vicamo
This commit is contained in:
Родитель
852fe998c4
Коммит
089c2f23cb
|
@ -87,3 +87,17 @@ function runTests() {
|
|||
finish();
|
||||
}
|
||||
}
|
||||
|
||||
const NDEF = {
|
||||
TNF_WELL_KNOWN: 1
|
||||
};
|
||||
|
||||
var NfcUtils = {
|
||||
fromUTF8: function(str) {
|
||||
let buf = new Uint8Array(str.length);
|
||||
for (let i = 0; i < str.length; ++i) {
|
||||
buf[i] = str.charCodeAt(i);
|
||||
}
|
||||
return buf;
|
||||
}
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче