gecko-dev/devtools/client/storage/test/storage-search.html
Michael Ratcliffe 40736475a0 Bug 1257603 - Storage inspector search should ignore hidden columns r=nchevobbe
storage-search.html:
  - Switched  to use cookies.

browser_storage_search.js:
  - Use a little destructuring.
  - Hide all but name and value columns.
  - Run search tests with both columns visible.
  - Hide the value column.
  - Run search tests with only the name column visible.

MozReview-Commit-ID: JKeRLWfhpFb

--HG--
extra : rebase_source : f4e045f97dee8ad2470289eea69d208cedc79adb
2017-06-06 11:08:11 +01:00

29 lines
614 B
HTML

<!DOCTYPE HTML>
<html>
<!--
Bug 1224115 - Storage Inspector table filtering
-->
<head>
<meta charset="utf-8">
<title>Storage inspector table filtering test</title>
<script type="text/javascript">
"use strict";
/* exported init */
function init() {
document.cookie = "01234=56789";
document.cookie = "ANIMAL=hOrSe";
document.cookie = "food=energy bar";
document.cookie = "FOO=bArBaz";
document.cookie = "money=##$$$**";
document.cookie = "sport=football";
document.cookie = "year=2016";
}
</script>
</head>
<body onload="init()">
</body>
</html>