The standard mentions polymorphic class specifically, for example, in 10.3.1:
Virtual functions support dynamic binding and object-oriented
programming. A class that declares or inherits a virtual function is
called a polymorphic class.
It also talks about abstract classes and pure virtual functions, like in 10.4.2:
An abstract class is a class that can be used only as a base class of
some other class; no objects of an abstract class can be created
except as subobjects of a class derived from it. A class is abstract
if it has at least one pure virtual function.
There is no specific mention of a pure abstract class (or pure virtual class), only pure virtual functions.
N.B: This is based off the draft standard, n3376.