1 // Copyright 2019 PDFium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "testing/gtest/include/gtest/gtest.h" 6 #include "testing/xfa_js_embedder_test.h" 7 8 class CPDFXFA_DocEnvironmentEmbedderTest : public XFAJSEmbedderTest {}; 9 10 // Should not crash. TEST_F(CPDFXFA_DocEnvironmentEmbedderTest,BUG_1223)11TEST_F(CPDFXFA_DocEnvironmentEmbedderTest, BUG_1223) { 12 ASSERT_TRUE(OpenDocument("simple_xfa.pdf")); 13 14 EXPECT_FALSE(Execute("URL=y")); 15 } 16