LCOV - code coverage report
Current view: top level - dom/html/input - FileInputType.cpp (source / functions) Hit Total Coverage
Test: output.info Lines: 0 8 0.0 %
Date: 2017-07-14 16:53:18 Functions: 0 2 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
       2             : /* vim: set ts=8 sts=2 et sw=2 tw=80: */
       3             : /* This Source Code Form is subject to the terms of the Mozilla Public
       4             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       5             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
       6             : 
       7             : #include "FileInputType.h"
       8             : 
       9             : #include "mozilla/dom/HTMLInputElement.h"
      10             : 
      11             : bool
      12           0 : FileInputType::IsValueMissing() const
      13             : {
      14           0 :   if (!mInputElement->HasAttr(kNameSpaceID_None, nsGkAtoms::required)) {
      15           0 :     return false;
      16             :   }
      17             : 
      18           0 :   if (!IsMutable()) {
      19           0 :     return false;
      20             :   }
      21             : 
      22           0 :   return mInputElement->GetFilesOrDirectoriesInternal().IsEmpty();
      23             : }
      24             : 
      25             : nsresult
      26           0 : FileInputType::GetValueMissingMessage(nsXPIDLString& aMessage)
      27             : {
      28             :   return nsContentUtils::GetLocalizedString(nsContentUtils::eDOM_PROPERTIES,
      29             :                                             "FormValidationFileMissing",
      30           0 :                                             aMessage);
      31             : }

Generated by: LCOV version 1.13