| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 } | 317 } |
| 318 | 318 |
| 319 .indexed-db-object-store-storage-tree-item .icon { | 319 .indexed-db-object-store-storage-tree-item .icon { |
| 320 content: url(Images/indexedDBObjectStore.png); | 320 content: url(Images/indexedDBObjectStore.png); |
| 321 } | 321 } |
| 322 | 322 |
| 323 .indexed-db-index-storage-tree-item .icon { | 323 .indexed-db-index-storage-tree-item .icon { |
| 324 content: url(Images/indexedDBIndex.png); | 324 content: url(Images/indexedDBIndex.png); |
| 325 } | 325 } |
| 326 | 326 |
| 327 .service-worker-cache-tree-item .icon { |
| 328 content: url(Images/indexedDBObjectStore.png); |
| 329 } |
| 330 |
| 331 .service-worker-cache-storage-tree-item .icon { |
| 332 content: url(Images/indexedDB.png); |
| 333 } |
| 334 |
| 327 .domstorage-storage-tree-item.local-storage .icon { | 335 .domstorage-storage-tree-item.local-storage .icon { |
| 328 content: url(Images/localStorage.png); | 336 content: url(Images/localStorage.png); |
| 329 } | 337 } |
| 330 | 338 |
| 331 .domstorage-storage-tree-item.session-storage .icon { | 339 .domstorage-storage-tree-item.session-storage .icon { |
| 332 content: url(Images/sessionStorage.png); | 340 content: url(Images/sessionStorage.png); |
| 333 } | 341 } |
| 334 | 342 |
| 335 .cookie-storage-tree-item .icon { | 343 .cookie-storage-tree-item .icon { |
| 336 content: url(Images/cookie.png); | 344 content: url(Images/cookie.png); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 348 .storage-application-cache-connectivity-icon { | 356 .storage-application-cache-connectivity-icon { |
| 349 margin: 0 5px; | 357 margin: 0 5px; |
| 350 } | 358 } |
| 351 | 359 |
| 352 .storage-application-cache-connectivity { | 360 .storage-application-cache-connectivity { |
| 353 padding-right: 5px; | 361 padding-right: 5px; |
| 354 border-right: 1px solid #CCC; | 362 border-right: 1px solid #CCC; |
| 355 height: 23px; | 363 height: 23px; |
| 356 line-height: 23px | 364 line-height: 23px |
| 357 } | 365 } |
| OLD | NEW |